Calico™
Enterprise API
Platform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
Enterprise API
Platform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
  1. All users
  • Overview
  • Pagination
  • Enterprise API
    • Authentication
    • User details
      • User assets
      • User account
      • User transactions
      • Deactivate account
    • All users
      • Accounts list
        GET
      • Transactions list
        GET
      • Users list
        GET
      • Search users
        POST
    • Stats
      • Number of enterprise users
      • Number of accounts by provider
      • Balance of all accounts
      • Top traded assets
    • Enterprise providers
      GET
    • Calico providers
      GET
  • Schemas
    • User
    • TransactionsDiscriminator
    • GetAccountsListResponse
    • GetTransactionsListResponse
    • GetUsersListResponse
    • Consent model
    • ProviderMetadata
    • GetTransactionsResponse
    • OpenAPIGetAssetsResponse
    • ListProvidersResponse
    • OpenAPIDeleteCryptoSourceRequest
    • GetAssetsResponse
    • PageData
    • GetTransactionsData
    • ListProvidersData
    • GetAssetsData
    • TransactionCategorization
    • CalicoErrorResponse
    • Input only transactions
    • AssetPosition
    • OpenAPIAssetPosition
    • ErrorItem
    • Send transaction data
    • Output only transaction data
    • FeeItem
    • CryptoSourceId
    • Receive transaction data
    • FeeObject
    • ProviderId
    • Transactions with input and output
    • CurrencyValue
    • Uncategorized transaction data
    • Transactions data
    • Transactions data
    • Input only transactions
    • TransactionType
    • Send transaction data
    • OpenAPITransactionCategorization
    • Receive transaction data
    • OpenAPIFeeObject
    • Output only transaction data
    • OpenAPIFeeItem
    • Transactions with input and output
    • Uncategorized transaction data
    • OpenAPICurrencyValue
  1. All users

Users list

Developing
GET
/enterprise/v2/users/all
All users associated with an enterprise.
Deactivated accounts may be deactivated by the end-user or the enterprise.
Page data uses the last user_id as the marker for the next page. Order by pagination Id in table.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
,whose value is to concatenate the Token after the Bearer.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠404Not found
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location '/enterprise/v2/users/all?user_ids=undefined&limit=undefined&cursor=undefined' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Example 1
{
    "page": {
        "next_uri": "/transactions?start_time=2025-11-22T23%3A45%3A50Z&end_time=2026-01-25T22%3A47%3A34Z&limit=30&cursor=DLVsbG8sIFdvcmxkIQ=="
    },
    "data": {
        "users": [
            {
                "email": "user@example.com",
                "user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
                "consented_at": "2019-08-24T14:15:22.123Z",
                "full_name": "string",
                "deactivated_on": "2019-08-24",
                "deactivated": true
            }
        ]
    },
    "errors": [
        {
            "provider_id": "string",
            "cause": "bad_request"
        }
    ]
}
Previous
Transactions list
Next
Search users
Built with