Skip to main content
POST
/
cards
/
{cardId}
/
samsung-wallet
Create a Samsung digital wallet token
curl --request POST \
  --url https://api.equalsmoney.com/v2/cards/{cardId}/samsung-wallet \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "deviceType": "WATCH",
  "provisioningAppVersion": "2.11.1",
  "deviceId": "b39f54264a3d",
  "walletUserId": "894b8236-b5cc-4f49-89f7-690d7bc4b9d2"
}
'
{
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z",
  "pushTokenizeRequestData": {
    "cardType": "CREDIT",
    "displayName": "Visa 5678",
    "extraProvisionPayload": "string",
    "lastDigits": "5678",
    "network": "CREDIT",
    "tokenServiceProvider": "MC"
  }
}

Authorizations

Authorization
string
header
required

Path Parameters

cardId
string<uuid>
required

The ID of the card to work with.

Maximum string length: 36
Example:

"e9293471-5eb3-4dbc-916c-dbaf9e2deefd"

Query Parameters

accountId
string
required

The ID of the account to work with.

Example:

"F50091"

personId
string<uuid>

The ID of the person to work with.

Maximum string length: 36
Example:

"775596ae-2624-40af-a9dc-9756110a4a04"

Body

application/json

Body

deviceType
enum<string>
required

The type of device into which the digital wallet token is provisioned.

Available options:
MOBILE_PHONE,
TABLET,
WATCH
Example:

"WATCH"

provisioningAppVersion
string
required

The version of the application making the provisioning request. Used for debugging and fraud prevention.

Maximum string length: 50
Example:

"2.11.1"

deviceId
string
required

The cardholder's Android device ID, as provided during the provisioning process.

Maximum string length: 24
Example:

"b39f54264a3d"

walletUserId
string
required

The cardholder's digital wallet account ID, as provided during the provisioning process.

Maximum string length: 50
Example:

"894b8236-b5cc-4f49-89f7-690d7bc4b9d2"

Response

201 - application/json

Created

createdAt
string<date-time>
required

The date the Resource was initially created. ISO 8601 format without milliseconds.

updatedAt
string<date-time>
required

The date the Resource was last modified. ISO 8601 format without milliseconds.

pushTokenizeRequestData
object