| Field | Type | Description |
|---|---|---|
conversion_id | String | Unique ID for the conversion |
transaction_id | String | Unique ID for the transaction |
transaction_time | ISO 8601 | Time of transaction (YYYY-MM-DDTHH:mm:ss) |
click_id | String | The original click identifier |
amount | Number | Total transaction amount |
transaction_discount | Number | Applied discount amount |
items | Array | List of items included in the transaction |
curl --location 'https://prod.your-api1-server.com/api/v1/postbacks/conversions' \
--header 'Authorization: Token ' \
--header 'Content-Type: application/json' \
--data '{
"transaction_id": "ORDER011",
"transaction_time": "2026-03-24T22:00:00",
"click_id": "1c7ced22f8e146ca",
"amount": 200000,
"items": [
{
"id": "vay5tr",
"sku": "vay5tr",
"name": "vay 5 trieu",
"price": 100000,
"quantity": 1,
"category": "vay5tr",
"category_id": "vay500"
},
{
"id": "vay5tr2",
"sku": "vay5tr",
"name": "vay 5 trieu2",
"price": 100000,
"quantity": 1,
"category": "vay5tr",
"category_id": "vay500"
}
],
"extra": {
"customer_type": "NEW"
}
}'{
"data": {
"code": "00",
"message": "success",
"transaction_id": "ORDER011"
},
"message": "Postback received",
"status": "success"
}