Skip to main content

Create Network Token Cryptogram

POST/v2/network_tokens/:id/cryptogram

Generates a DSRP or TAVV cryptogram for the referenced network token. Cryptograms should be provided for each initial CIT and MIT charges and for all subsequent CIT charges.

idStringrequired
The network token identifier (UUID)
Example Request
POST /v2/network_tokens/:id/cryptogram
Authorization: Basic <base64(api_key:api_password)>

Response

idString
The network token identifier
authentication_dataString
The cryptogram value, base64 encoded (up to 32 chars)
pan_sequence_numberString
PAN sequence number for the network token (2 digits)
track2_equivalentString
Track 2 equivalent data (hex encoded, up to 40 chars)
createdString
Timestamp when the cryptogram was created
Example Response
{
"result": "OK",
"data": {
"id": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"authentication_data": "AJ8IZ5aP8bHwAAzmZd4gAAADFA==",
"pan_sequence_number": "01",
"track2_equivalent": "6799995700000004054D25122010875408456",
"created": "2026-03-31T10:20:00Z"
}
}