Get a transaction timeline
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/transactions/timeline \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"transactionId": "Id of the transaction to get timeline"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/query/transactions/timeline"
payload = { "transactionId": "Id of the transaction to get timeline" }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({transactionId: 'Id of the transaction to get timeline'})
};
fetch('https://sandbox-platform.jupico.com/v1/query/transactions/timeline', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/transactions/timeline';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({transactionId: 'Id of the transaction to get timeline'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"code": "<string>",
"data": {
"balance": 123,
"transactions": [
{
"review": {},
"billing": {},
"shipping": {},
"processing": {},
"paymentMethod": {},
"amount": 123,
"balanceAmount": 123,
"voided": true,
"taxAmount": 123,
"status": "<string>",
"transactionId": "<string>",
"operation": "<string>",
"subMerchantId": "<string>",
"customerId": "<string>",
"parentId": "<string>",
"referenceNumber": "<string>",
"referenceId": "<string>",
"txDate": "<string>",
"description": "<string>",
"approvalNumber": "<string>",
"dynamicFee": {},
"createdAt": "<string>",
"feeId": "<string>",
"children": [
"<string>"
]
}
]
}
}Query
Get a transaction timeline
Returns a chronological timeline of transaction events, showing how activity evolved over time.
POST
https://sandbox-platform.jupico.com
/
v1
/
query
/
transactions
/
timeline
Get a transaction timeline
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/transactions/timeline \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"transactionId": "Id of the transaction to get timeline"
}
'import requests
url = "https://sandbox-platform.jupico.com/v1/query/transactions/timeline"
payload = { "transactionId": "Id of the transaction to get timeline" }
headers = {
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({transactionId: 'Id of the transaction to get timeline'})
};
fetch('https://sandbox-platform.jupico.com/v1/query/transactions/timeline', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/transactions/timeline';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({transactionId: 'Id of the transaction to get timeline'})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"code": "<string>",
"data": {
"balance": 123,
"transactions": [
{
"review": {},
"billing": {},
"shipping": {},
"processing": {},
"paymentMethod": {},
"amount": 123,
"balanceAmount": 123,
"voided": true,
"taxAmount": 123,
"status": "<string>",
"transactionId": "<string>",
"operation": "<string>",
"subMerchantId": "<string>",
"customerId": "<string>",
"parentId": "<string>",
"referenceNumber": "<string>",
"referenceId": "<string>",
"txDate": "<string>",
"description": "<string>",
"approvalNumber": "<string>",
"dynamicFee": {},
"createdAt": "<string>",
"feeId": "<string>",
"children": [
"<string>"
]
}
]
}
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Body
application/json
The body is of type object.
Last modified on July 14, 2026
Was this page helpful?
⌘I

