One Time Token

Represents a list of challenges that a user needs to clear in order to access protected resources.

Commonly used for Strong Customer Authentication & 2FA.

Learn from our guide to understand One Time Token Framework.

To ease reading in this document, we will use OTT as an abbreviation for one time token.

The Verify PIN/FaceMap/Device Fingerprint APIs are currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use these APIs

We suggest the following method to check if the OTT is ready to access an SCA protected endpoint.

Iterate through challenges array and look for any challenge that has the following properties:

  1. required is true
  2. passed is false
Fields
oneTimeTokentext

Unique identifier of a one time token.

challengesChallengeObject[]

Array of ChallengeObject.

validitynumber

Seconds until the one time token become expired.

actionTypetext

The action bound to the one time token.

For example: BALANCE__GET_STATEMENT when we want to retrieve a balance account statement.

userIdnumber

Creator of this one time token.

One Time Token Object
{
"oneTimeToken": "5932d5b5-ec13-452f-8688-308feade7834",
"challenges": [
{
"primaryChallenge": {
"type": "PIN",
"viewData": {
"attributes": {
"userId": 6146956
}
}
},
"alternatives": [],
"required": true,
"passed": false
}
],
"validity": 3600,
"actionType": "BALANCE__GET_STATEMENT",
"userId": 6146956
}
Fields
primaryChallengeChallenge

Type of challenge user can do.

alternativesChallenge[]

Alternative challenges that user can do instead of the primary ones.

requiredboolean

Required (or not) to pass the OTT.

passedboolean

Status of this challenge.

Challenge Object
{
"primaryChallenge": {
"type": "PIN",
"viewData": {
"attributes": {
"userId": 6146956
}
}
},
"alternatives": [],
"required": true,
"passed": false
}
Fields
typeChallengeType
viewDataobject

An object that provides data required to present a challenge window. It can be messages, IDs, or other attributes.

Challenge
{
"type": "PIN",
"viewData": {
"attributes": {
"userId": 6146956
}
}
}

Enumerated string that indicates what sort of challenge user can do to pass the associated OTT.

TypePre-requisiteEndpoint to trigger challengeEndpoint to perform challenge
PINCreate Pin-Verify Pin
FACE_MAPEnrol FaceMap-Verify FaceMap
SMSCreate Phone NumberTrigger SMS ChallengeVerify SMS
WHATSAPPCreate Phone NumberTrigger WhatsApp ChallengeVerify WhatsApp
VOICECreate Phone NumberTrigger Voice ChallengeVerify Voice
DEVICE FINGERPRINTCreate Device Fingerprint-Verify Device Fingerprint

GET /v1/one-time-token/status

Notes:

  1. GET /v1/identity/one-time-token/status will be deprecated soon.
  2. Please use the new endpoint /v1/one-time-token/status instead.

Retrieve necessary information to clear a OTT.

Request

Header
One-Time-Tokentext

Text value of a OTT.

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken

Example Request
curl -X GET https://api.sandbox.transferwise.tech/v1/one-time-token/status \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [
{
"primaryChallenge": {
"type": "PIN",
"viewData": {
"attributes": {
"userId": 6146956
}
}
},
"alternatives": [],
"required": true,
"passed": false
}
],
"validity": 3600,
"actionType": "BALANCE__GET_STATEMENT",
"userId": 6146956
}
}

POST /v1/one-time-token/pin/verify

To clear a PIN challenge listed in a OTT.

Notes:

  1. User is required to create pin before the verification can be successful.
  2. Rate limit may be applied if there are 5 continuous unsuccessful attempts and OTT creation will be blocked for 15 minutes.

Request

Header
One-Time-Tokentext

Text value of a OTT.

Body
pintext

PIN that is setup using create pin endpoint.

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/pin/verify \
-H 'Authorization: Bearer <your api token>'
-H 'Content-Type: application/jose+json' \
-H 'X-TW-JOSE-Method: jwe' \
-H 'Accept: application/jose+json' \
-H 'Accept-Encoding: *' \
-H 'One-Time-Token: <one time token>'
-d '{
"pin": "1111"
}'
Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [],
"validity": 3600
}
}

POST /v1/one-time-token/partner-device-fingerprint/verify

To clear a Device Fingerprint challenge listed in an OTT.

Notes:

  1. User is required to create a device fingerprint before the verification can be successful.
  2. Rate limit may be applied if there are 5 continuous unsuccessful attempts and OTT creation will be blocked for 15 minutes.

Request

Header
One-Time-Tokentext

Text value of a OTT.

Body
deviceFingerprinttext

Device Fingerprint previously set.

Example Request
curl -X POST 'https://api.sandbox.transferwise.tech/v1/one-time-token/partner-device-fingerprint/verify' \
-H 'Authorization: Bearer <your api token>' \
-H 'Content-Type: application/jose+json' \
-H 'X-TW-JOSE-Method: jwe' \
-H 'Accept: application/jose+json' \
-H 'Accept-Encoding: *' \
-H 'One-Time-Token: <one time token>' \
-d '{
"deviceFingerprint: "3207da22-a0d3-4b6b-a591-6297e646fe32"
}'

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken.
When successful, response may return the next challenge in challenges array. If challenges array is empty. You may now use the OTT to access an SCA protected endpoint.

Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [],
"validity": 3600
}
}

POST /v1/one-time-token/facemap/verify

To clear a FACE_MAP challenge listed in a OTT.

Notes:

  1. User is required to enrol facemap before the verification can be successful.
  2. Rate limit may be applied if there are 5 continuous unsuccessful attempts and OTT creation will be blocked for 15 minutes.

Request

Header
One-Time-Tokentext

Text value of a OTT.

Body
faceMaptext

Base64-encoded binary data as a string.

For more details how to get this binary, please read FaceTec's export API.

To retrieve Wise's FaceTec public key, please refer to our FaceTec's Get Public Key API.

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken.

When successful, response may return the next challenge in challenges array.

If challenges array is empty. You may now use the OTT to access an SCA protected endpoint.

Example Request
curl -X GET https://api.sandbox.transferwise.tech/v1/one-time-token/facemap/verify \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
-d '{
"faceMap": "<base64_encoded_string>"
}'
Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [],
"validity": 3600
}
}

POST /v1/one-time-token/sms/trigger

To trigger a SMS challenge by sending SMS to user verified phone number containing a 6 digit one time password (OTP).

This OTP code can be used to clear a SMS challenge by using the verify sms endpoint.

The Trigger SMS Challenge API is currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use this API

Request

Header
One-Time-Tokentext

Text value of a OTT.

Response

obfuscatedPhoneNotext

Obfuscated phone number that can be used as a hint for the end customer regarding which phone number the SMS was sent to.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/sms/trigger \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
Example Response
{
"obfuscatedPhoneNo": "*********8888"
}

POST /v1/one-time-token/sms/verify

To clear a SMS challenge listed in a OTT.

Notes:

  1. User is required have a verified phone number. See create phone number for more information.
  2. Trigger SMS Challenge is required to be called first.
  3. Since we won't be sending real SMS on sandbox, the OTP Code will always be 111111.
The Verify SMS Challenge API is currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use this API

Request

Header
One-Time-Tokentext

Text value of a OTT.

Body
otpCodetext

6 digit OTP code in text format.

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/sms/verify \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
-d '{
"otpCode": "111111"
}'
Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [],
"validity": 3600
}
}

POST /v1/one-time-token/whatsapp/trigger

To trigger a WhatsApp challenge by sending WhatsApp message to user verified phone number containing a 6 digit one time password (OTP).

This OTP code can be used to clear a WHATSAPP challenge by using the verify whatsapp endpoint.

The Trigger WhatsApp Challenge API is currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use this API

Request

Header
One-Time-Tokentext

Text value of a OTT.

Response

obfuscatedPhoneNotext

Obfuscated phone number that can be used as a hint for the end customer regarding which phone number the WhatsApp message was sent to.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/whatsapp/trigger \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
Example Response
{
"obfuscatedPhoneNo": "*********8888"
}

POST /v1/one-time-token/whatsapp/verify

To clear a WHATSAPP challenge listed in a OTT.

Notes:

  1. User is required have a verified phone number. See create phone number for more information.
  2. Trigger WhatsApp Challenge is required to be called first.
  3. Since we won't be sending real WhatsApp message on sandbox, the OTP Code will always be 111111.
The Verify WhatsApp Challenge API is currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use this API

Request

Header
One-Time-Tokentext

Text value of a OTT.

Body
otpCodetext

6 digit OTP code in text format.

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/whatsapp/verify \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
-d '{
"otpCode": "111111"
}'
Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [],
"validity": 3600
}
}

POST /v1/one-time-token/voice/trigger

To trigger a WhatsApp challenge by sending voice message to user verified phone number containing a 6 digit one time password (OTP).

This OTP code can be used to clear a VOICE challenge by using the verify voice endpoint.

The Trigger Voice Challenge API is currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use this API

Request

Header
One-Time-Tokentext

Text value of a OTT.

Response

obfuscatedPhoneNotext

Obfuscated phone number that can be used as a hint for the end customer regarding which phone number the WhatsApp message was sent to.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/voice/trigger \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
Example Response
{
"obfuscatedPhoneNo": "*********8888"
}

POST /v1/one-time-token/voice/verify

To clear a VOICE challenge listed in a OTT.

Notes:

  1. User is required have a verified phone number. See create phone number for more information.
  2. Trigger Voice Challenge is required to be called first.
  3. Since we won't be sending real voice message on sandbox, the OTP Code will always be 111111.
The Verify Voice Challenge API is currently in closed Beta and subject to change. Please speak with your implementation manager if you would like to use this API

Request

Header
One-Time-Tokentext

Text value of a OTT.

Body
otpCodetext

6 digit OTP code in text format.

Response

oneTimeTokenPropertiesOneTimeToken

Properties of OneTimeToken.

Example Request
curl -X POST https://api.sandbox.transferwise.tech/v1/one-time-token/voice/verify \
-H 'Authorization: Bearer <your api token>'
-H 'One-Time-Token: <one time token>'
-d '{
"otpCode": "111111"
}'
Example Response
{
"oneTimeTokenProperties": {
"oneTimeToken": "9f5f5812-2609-4e48-8418-b64437c0c7cd",
"challenges": [],
"validity": 3600
}
}