Create a Mastercard credential account
curl --request POST \
--url https://sandbox-api.borderless.xyz/v1/mastercard/credentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accountAlias": "user@example.com",
"aliasType": "EMAIL",
"status": "ACTIVE",
"kycLevel": "LEVEL_1",
"addressLine1": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postalCode": "<string>"
}
'Mastercard Crypto Credentials
Create a Mastercard credential account
POST
/
v1
/
mastercard
/
credentials
Create a Mastercard credential account
curl --request POST \
--url https://sandbox-api.borderless.xyz/v1/mastercard/credentials \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"accountAlias": "user@example.com",
"aliasType": "EMAIL",
"status": "ACTIVE",
"kycLevel": "LEVEL_1",
"addressLine1": "<string>",
"addressLine2": "<string>",
"city": "<string>",
"state": "<string>",
"country": "<string>",
"postalCode": "<string>"
}
'Documentation Index
Fetch the complete documentation index at: https://docs.borderless.xyz/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
The account alias (e.g. email address).
Maximum string length:
255Example:
"user@example.com"
The type of alias.
Available options:
EMAIL, PHONE_NUMBER, DOMAIN_NAME Example:
"EMAIL"
The initial status of the account.
Available options:
ACTIVE, SUSPEND, DECOMMISSIONED Example:
"ACTIVE"
The KYC level for the account.
Available options:
LEVEL_1, LEVEL_2, LEVEL_3 Example:
"LEVEL_1"
Address line 1.
Maximum string length:
255Address line 2.
Maximum string length:
255City.
Maximum string length:
255State or province.
Maximum string length:
255Country code.
Maximum string length:
255Postal code.
Maximum string length:
255Response
201
Account created successfully.
Was this page helpful?
⌘I