Skip to main content
POST
/
management
/
clients
/
individuals
/
{clientId}
/
products
curl -X POST "https://api.cryptomate.me/management/clients/individuals/4QWq1rQtjnLM0wMswTRY9AmM4XTvY4GG/products" \
  -H "x-api-key: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "subproduct": "cards_individuals"
  }'
{
  "id": "2VvyMx6rNLRB1W9euCyJGe46qyoiVPzh",
  "client_id": "4QWq1rQtjnLM0wMswTRY9AmM4XTvY4GG",
  "product": "cards_individuals",
  "status": "pending_documentation",
  "missing_requirements": {
    "documents": [
      {
        "id": "identity_document",
        "name": "Identity document",
        "description": "A valid government-issued identity document",
        "required": true,
        "valid_documents": [
          {
            "id": "passport",
            "name": "Passport",
            "description": "A valid passport",
            "required": true,
            "require_image": true,
            "require_back_image": false,
            "metadata": [
              {
                "id": "number",
                "name": "Document Number",
                "data_type": "STRING",
                "required": true
              }
            ]
          }
        ]
      }
    ],
    "data": []
  },
  "created_at": "2026-04-15T10:30:00",
  "updated_at": "2026-04-15T10:30:00"
}
Requests the enablement of a product for a client, returning the resulting request status and any missing requirements. Submit the missing documents through Complete product documentation and the missing data through Update individual client, then advance the request with Submit product enablement request. Requires an API key with access level 3 or higher.

Path parameters

clientId
string
required
Unique identifier of the client.

Body

subproduct
string
required
Product to enable. Possible values: cards_individuals.

Response

Returns the created product enablement request. See List client products for the full field list.
curl -X POST "https://api.cryptomate.me/management/clients/individuals/4QWq1rQtjnLM0wMswTRY9AmM4XTvY4GG/products" \
  -H "x-api-key: $CRYPTOMATE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "subproduct": "cards_individuals"
  }'
{
  "id": "2VvyMx6rNLRB1W9euCyJGe46qyoiVPzh",
  "client_id": "4QWq1rQtjnLM0wMswTRY9AmM4XTvY4GG",
  "product": "cards_individuals",
  "status": "pending_documentation",
  "missing_requirements": {
    "documents": [
      {
        "id": "identity_document",
        "name": "Identity document",
        "description": "A valid government-issued identity document",
        "required": true,
        "valid_documents": [
          {
            "id": "passport",
            "name": "Passport",
            "description": "A valid passport",
            "required": true,
            "require_image": true,
            "require_back_image": false,
            "metadata": [
              {
                "id": "number",
                "name": "Document Number",
                "data_type": "STRING",
                "required": true
              }
            ]
          }
        ]
      }
    ],
    "data": []
  },
  "created_at": "2026-04-15T10:30:00",
  "updated_at": "2026-04-15T10:30:00"
}