Calico®
Enterprise APIPlatform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
Enterprise APIPlatform API
Resources
Resources
  • Calico Connect
  • Troubleshooting
  • Response Codes
  • FAQs
Release Notes
About
About
  • getcalico.com
  • Privacy Policy
  • Terms of Use
  1. All users
  • Overview
  • Enterprise API
    • Authentication
    • Changelog
    • User details
      • User assets
      • User transactions
      • User accounts
      • 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
    • Report Generation
      • Create Report
      • List Reports
      • Get Report
      • Download Link
      • Delete Report
    • Enterprise providers
      GET
    • Calico providers
      GET
  • Schemas
    • User
    • GetAccountsListResponse
    • GetTransactionsListResponse
    • GetUsersListResponse
    • Consent model
    • ErrorEmpty
    • OpenAPIGetAssetsResponse
    • ErrorItem
    • AssetPosition
    • Transactions data
    • ListProvidersData
    • ProviderMetadata
    • ReportData
    • ListReportsData
    • TransactionReportParameters
    • AccountsReportParameters
    • IndividualReportParameters
    • GetReportData
    • ReportRequestData
    • SummaryReportParameters
    • EmployeeListReportParameters
    • ReportType
    • ReportLinkData
    • OpenAPIDeleteCryptoSourceRequest
    • GetAssetsResponse
    • ListProvidersResponse
    • GetTransactionsResponse
    • PageData
    • GetAssetsData
    • GetTransactionsData
    • CalicoErrorResponse
    • TransactionCategorization
    • OpenAPIAssetPosition
    • CryptoSourceId
    • FeeItem
    • ProviderId
    • FeeObject
    • CurrencyValue
    • 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
    • ReportFormat
    • NumericPageData
    • UserData
    • accountData
    • bulkAccountData
    • ProviderCryptoMetaData
    • EmployeePageData
    • TransactionsListData
  1. All users

Users list

Calico Enterprise API
https://api.getcalico.com
Calico Enterprise API
https://api.getcalico.com
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.
The body size of the request must not exceed 5MB.

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Responses

🟢200Success
application/json
Bodyapplication/json

🟠400Bad Request
🟠401Unauthorized
🟠404Not found
🟠413Content Too Large
🔴500Internal Server Error
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://api.getcalico.com/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": "string",
                "user_id": "string",
                "full_name": "string",
                "deactivated_on": "string",
                "deactivated": true,
                "consented_at": "string"
            }
        ]
    },
    "errors": []
}
Previous
Transactions list
Next
Search users