Loading...
Loading...
Moneybird integration. Manage Contacts, LedgerAccounts, FinancialMutations. Use when the user wants to interact with Moneybird data.
npx skill4agent add membranedev/application-skills moneybirdmembranenpm install -g @membranehq/climembrane login --tenantmembrane login complete <code>membrane search moneybird --elementType=connector --jsonoutput.items[0].element?.idmembrane connect --connectorId=CONNECTOR_ID --jsonmembrane connection list --jsonconnectionIdmembrane action list --intent=QUERY --connectionId=CONNECTION_ID --json| Name | Key | Description |
|---|---|---|
| List Sales Invoices | list-sales-invoices | List all sales invoices in an administration |
| List Contacts | list-contacts | List all contacts in an administration |
| List Products | list-products | List all products in an administration |
| List Financial Accounts | list-financial-accounts | List all financial accounts (bank accounts, cash, etc.) in an administration |
| List Tax Rates | list-tax-rates | List all tax rates in an administration |
| List Ledger Accounts | list-ledger-accounts | List all ledger accounts in an administration |
| List Administrations | list-administrations | List all administrations the authenticated user has access to |
| Get Sales Invoice | get-sales-invoice | Get a single sales invoice by ID |
| Get Contact | get-contact | Get a single contact by ID |
| Get Product | get-product | Get a single product by ID |
| Create Sales Invoice | create-sales-invoice | Create a new sales invoice |
| Create Contact | create-contact | Create a new contact in an administration |
| Create Product | create-product | Create a new product |
| Update Sales Invoice | update-sales-invoice | Update an existing sales invoice (only draft invoices can be fully updated) |
| Update Contact | update-contact | Update an existing contact |
| Update Product | update-product | Update an existing product |
| Delete Sales Invoice | delete-sales-invoice | Delete a sales invoice (only draft invoices can be deleted) |
| Delete Contact | delete-contact | Delete a contact by ID |
| Delete Product | delete-product | Delete a product |
| Send Sales Invoice | send-sales-invoice | Send a sales invoice to the contact via email or other delivery method |
membrane action run --connectionId=CONNECTION_ID ACTION_ID --jsonmembrane action run --connectionId=CONNECTION_ID ACTION_ID --json --input "{ \"key\": \"value\" }"membrane request CONNECTION_ID /path/to/endpoint| Flag | Description |
|---|---|
| HTTP method (GET, POST, PUT, PATCH, DELETE). Defaults to GET |
| Add a request header (repeatable), e.g. |
| Request body (string) |
| Shorthand to send a JSON body and set |
| Send the body as-is without any processing |
| Query-string parameter (repeatable), e.g. |
| Path parameter (repeatable), e.g. |
membrane action list --intent=QUERY