Retrieve Transaction
Use this request to retrieve a specific transaction.
To retrieve a transaction, use the following URL and the GET method:
{service_url}/api/v3/seller/transactions/{key}Here, {service_url} is the URL of the sandbox or production environment, and {key} is the transaction key.
Example:
https://seller-transaction-api.sandbox.marketplace.taxamo.com/api/v3/seller/transactions/{key}Details
| Endpoint | Method |
|---|---|
/api/v3/seller/transactions/{key} | GET |
Parameters
| Parameter | Description |
|---|---|
{key} | The unique transaction key. |
Response example
The request returns the following response:
{
"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 14 days ago
Did this page help you?
