cURL
with_pagination
curl --request POST \ --url https://api.openfunnel.dev/api/v1/account/get-account-list \ --header 'Content-Type: application/json' \ --header 'X-API-Key: <x-api-key>' \ --header 'X-User-ID: <x-user-id>' \ --data ' { "pagination": { "limit": 50, "offset": 0 } } '
{ "accounts": [ { "id": 123, "domain": "<string>" } ], "total_count": 123, "pagination": { "limit": 123, "offset": 123, "total_count": 123, "has_more": true } }
List accounts with optional filters and pagination.
Request Body (optional):
Optional filters to apply when querying accounts. All filters are combined with AND logic.
Show child attributes
Pagination parameters for the request
Successful Response
Paginated response for account list.
Pagination metadata (included when pagination is requested)