Retrieve Transaction
Use this request to retrieve a specified transaction record.
To retrieve a transaction, the following URL and a GET method:
{service_url}/api/v3/seller/transactions/{key}
where:
{service_url}
is the URL of the sandbox or production environment.{key}
is the transaction key value. This specifies which transaction you wish to confirm.
Details
You can use the seller/transactions/{key}/
endpoint and a GET method to achieve this.
Where {key}
is the transaction key value. This specifies which transaction you wish to retrieve.
Type | Value |
---|---|
Endpoint | /api/v3/seller/transactions/{key} |
Method | GET |
API Reference Documentation | Retrieve transaction |
Response example
{
"transaction": {
"tax_timestamp": "2025-03-01T12:00:00Z",
"description": "Transaction description",
"currency_code": "EUR",
"buyer_name": "Test buyer",
"ship_to_address": {
"country_code": "GB",
"city": "Big city",
"street_name": "Street name",
"building_number": "100a",
"address_detail": "2nd fl",
"postal_code": "00000"
},
"billing_address": {
"country_code": "GB",
"city": "The big city",
"street_name": "The street name",
"building_number": "100a",
"postal_code": "00000"
},
"transaction_lines": [
{
"amount": 100,
"custom_id": "",
"ship_from_address": {
"country_code": "GB"
},
"description": "Product 1",
"product_class": "P",
"product_tax_code": {
"class": "TPP/Goods"
}
},
{
"amount": 100,
"custom_id": "",
"ship_from_address": {
"country_code": "GB"
},
"description": "Shipping",
"product_class": "S"
}
]
}
}
Updated about 1 month ago