{ "opencollection": "1.0.0", "info": { "name": "Moov Accounts API", "version": "2026.01.00" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "Generate a terms of service token", "type": "http" }, "http": { "method": "GET", "url": "https://api.moov.io/tos-token" }, "docs": "Retrieve a short-lived terms of service token required when creating new Moov accounts on behalf of users. The token confirms acceptance of Moov's platform agreement." }, { "info": { "name": "List accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.moov.io/accounts", "params": [ { "name": "count", "value": "", "type": "query", "description": "Maximum number of results to return per page." }, { "name": "skip", "value": "", "type": "query", "description": "Number of results to skip for pagination." }, { "name": "name", "value": "", "type": "query", "description": "Filter accounts by display name." }, { "name": "email", "value": "", "type": "query", "description": "Filter accounts by email address." }, { "name": "type", "value": "", "type": "query", "description": "Filter by account type (individual or business)." } ] }, "docs": "Retrieve a list of accounts connected to your platform. Supports filtering by name, email, and type to locate specific accounts." }, { "info": { "name": "Create an account", "type": "http" }, "http": { "method": "POST", "url": "https://api.moov.io/accounts", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new Moov account representing an individual or business legal entity. Accounts are required before linking payment methods or initiating transfers. Include a terms of service token from the /tos-token endpoint." }, { "info": { "name": "Retrieve an account", "type": "http" }, "http": { "method": "GET", "url": "https://api.moov.io/accounts/:accountID", "params": [ { "name": "accountID", "value": "", "type": "path", "description": "Unique identifier for the Moov account." } ] }, "docs": "Fetch the full details of a specific Moov account by its unique identifier, including profile information, verification status, and capabilities." }, { "info": { "name": "Update an account", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.moov.io/accounts/:accountID", "params": [ { "name": "accountID", "value": "", "type": "path", "description": "Unique identifier for the Moov account." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Modify the profile and settings of an existing Moov account. Only the fields provided in the request body will be updated; omitted fields remain unchanged." }, { "info": { "name": "Delete an account", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.moov.io/accounts/:accountID", "params": [ { "name": "accountID", "value": "", "type": "path", "description": "Unique identifier for the Moov account." } ] }, "docs": "Remove a Moov account and all associated data. This operation is irreversible. Ensure all funds have been disbursed before deleting an account." }, { "info": { "name": "Share an account connection", "type": "http" }, "http": { "method": "POST", "url": "https://api.moov.io/accounts/:accountID/connections", "params": [ { "name": "accountID", "value": "", "type": "path", "description": "Unique identifier for the Moov account." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Establish a connection between two Moov accounts, enabling the platform account to act on behalf of the connected account for money movement and management operations." }, { "info": { "name": "List connected accounts", "type": "http" }, "http": { "method": "GET", "url": "https://api.moov.io/accounts/:accountID/connected-accounts", "params": [ { "name": "accountID", "value": "", "type": "path", "description": "Unique identifier for the Moov account." } ] }, "docs": "Retrieve all accounts that have been connected to the specified account. Used by platform accounts to enumerate their linked user accounts." } ] } ], "bundled": true }