Customer Resource

This page describes the data received from the Customer API endpoints.

🚧

Important:

We do not consider adding a new property to the Customer payload as a breaking change to the API. Please build your integration to allow for new properties to be added to this and other resources.

The customer resource is a JSON object. When calling the Customer API endpoints, you get the following response:

{
  "id": "2a2c8407-f7d2-49e6-9c8f-39f69a6e5644",
  "wallets": [
    {
      "type": "non_custodial",
      "id": "1382bc73-7887-4ada-8c55-17178b34dc17",
      "state": "unverified",
      "currency": "ETH",
      "address": "0x42cE19972118a6F59fcA1D7E13A09712E9C83884",
      "tag": null,
      "providerName": null,
      "createTime": "2025-08-04T09:06:09.667Z",
      "updateTime": "2025-08-04T09:06:09.667Z"
    },
    {
      "type": "custodial",
      "id": "e4f87f0c-1800-4e33-be19-4ca9c0d5c3b5",
      "state": "verified",
      "currency": null,
      "address": null,
      "tag": null,
      "providerName": "Binance",
      "createTime": "2025-08-04T09:06:55.225Z",
      "updateTime": "2025-08-04T09:06:55.225Z"
    }
  ]
}

Please find the descriptions of the Customer resource properties below:

id

The ID of the specific Customer.

wallets

The wallets array of object provides the customer wallets which can be used when interacting with Coinify's products.

You can find the properties of the wallet object described in continuation:

PropertyTypeDescription
idstringThe ID of the wallet entry
typestringThe type of the wallet, currently supports custodial and non_custodial
statestringThe state of the wallet, currently supports unverified and verified
currencystring or nullThe currency associated with the wallet
addressstring or nullThe address associated with the wallet
tagstring or nullApplicable for cryptocurrencies that support the concept of tag/memo etc.
providerNamestring or nullThe name of the wallet provider
createTimestringThe creation time of the wallet
updateTimestringThe update time of the wallet