# Generate Cryptogram

**Method:** `POST`

**Path:** `/api/v1/tokens/{token_id}/token-transactional-data`

**Category:** Tokenization

**Authentication:** Required

## Description

Generate a cryptogram for a tokenized card transaction. The cryptogram is used
for secure network-level token transactions.


## Path Parameters

- `token_id` (`string`) **required** — Unique token ID for which to generate the cryptogram.

## Request Body

Content-Type: `application/json`

- `merchant_unique_reference` (`string`) **required** — Unique reference for this cryptogram generation request.
- `service_provider_token_id` (`string`) **required** — Service provider token identifier.

### Example Request

```json
{
  "merchant_unique_reference": "crypto-ref-001",
  "service_provider_token_id": "sp-token-001"
}
```

## Responses

- `201` — Cryptogram generated successfully.
- `400` — 
- `401` — 
- `403` — 
- `500` — 
- `503` — Service temporarily unavailable.

---

Reference: https://localhost:3000/api/tokenization/generate-cryptogram
