Generate Cryptogram
POST
/api/v1/tokens/{token_id}/token-transactional-dataGenerate a cryptogram for a tokenized card transaction. The cryptogram is used for secure network-level token transactions.
Requires
Bearer token. Get token →Path Parameters
| Name | Type | Description |
|---|---|---|
token_id | stringrequired | Unique token ID for which to generate the cryptogram. |
Request Body
| Name | Type | Description |
|---|---|---|
merchant_unique_reference | stringrequired | Unique reference for this cryptogram generation request. |
service_provider_token_id | stringrequired | Service provider token identifier. |
Status Codes
201 | Cryptogram generated successfully. |
400 | |
401 | |
403 | |
500 | |
503 | Service temporarily unavailable. |
Request
curl --request POST \
--url https://pluraluat.v2.pinepg.in/api/v1/tokens/token-v1-1234567890-aa-ABCDEF/token-transactional-data \
--header 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"merchant_unique_reference": "crypto-ref-001",
"service_provider_token_id": "sp-token-001"
}'Run this request
token_id