Skip to main content
DELETE
/
v1
/
identities
/
{id}
Delete an Identity by id
curl --request DELETE \
  --url https://sandbox-api.borderless.xyz/v1/identities/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "deleted": true,
  "hasComplianceChecks": true,
  "data": {
    "firstName": "<string>",
    "lastName": "<string>",
    "secondLastName": "<string>",
    "middleName": "<string>",
    "taxId": "<string>",
    "dateOfBirth": "YYYY-MM-DD",
    "email": "<string>",
    "phone": "<string>",
    "activity": "<string>",
    "address": {
      "id": "<string>",
      "street1": "<string>",
      "street2": "<string>",
      "city": "<string>",
      "state": "<string>",
      "postalCode": "<string>"
    },
    "documents": [
      {
        "id": "<string>",
        "idNumber": "<string>",
        "issuedDate": "YYYY-MM-DD",
        "expiryDate": "YYYY-MM-DD"
      }
    ],
    "accountPurposeOther": "<string>",
    "actingAsIntermediary": true,
    "nationalities": [],
    "placeOfBirthCity": "<string>",
    "hasForeignTaxRegistration": true
  },
  "mastercardCredential": {
    "status": "<string>",
    "countryOfResidence": "<string>",
    "paymentMethods": {
      "cryptoWallet": {
        "cryptoSupportedAssets": [
          "<string>"
        ]
      },
      "bankAccount": {
        "bankSupportedCurrencies": [
          "<string>"
        ]
      }
    },
    "vasps": [
      "<string>"
    ],
    "assetsAndNetworks": {
      "offset": 123,
      "limit": 123,
      "count": 123,
      "total": 123,
      "items": [
        {
          "asset": "<string>",
          "network": "<string>",
          "supportedVasps": [
            "<string>"
          ]
        }
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Response

Successfully deleted Identity data.

id
string
required
type
enum<string>
required
Available options:
Personal,
Business
deleted
boolean
required
hasComplianceChecks
boolean
required
data
object
required
mastercardCredential
object