List fees
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/fees \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/fees"
payload = {}
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({})
};
fetch('https://sandbox-platform.jupico.com/v1/query/fees', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/fees';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": [
{
"_id": "<string>",
"review": {
"enabled": true,
"logs": [
"<string>"
]
},
"platformFee": 123,
"spProductFee": 123,
"batchPayoutId": "<string>",
"status": "<string>",
"transaction": {
"transactionId": "<string>",
"dynamicFee": true,
"platformFixedFee": 123,
"platformDiscountRate": 123,
"platformReturnRate": 123,
"platformReverseFixed": 123,
"platformReverseDiscountRate": 123,
"platformParentFixedFee": 123,
"spProductParentFixedFee": 123,
"spProductFixedFee": 123,
"spProductDiscountRate": 123,
"spProductReturnRate": 123,
"spProductReverseFixed": 123,
"spProductReverseDiscountRate": 123,
"txAmount": 123,
"txBalanceAmount": 123,
"referenceNumber": "<string>",
"txOperation": "<string>"
},
"txDate": "<string>",
"fee": 123,
"type": "<string>",
"subMerchantId": "<string>",
"spProductId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"count": 123,
"query": {
"criteria": {
"isDeleted": {
"$in": [
true
]
}
},
"options": {
"fields": {
"_id": 123,
"transaction": 123,
"schedule": 123,
"chargeback": 123,
"platformFee": 123,
"spProductFee": 123,
"batchPayoutId": 123,
"status": 123,
"txDate": 123,
"fee": 123,
"type": 123,
"subMerchantId": 123,
"spProductId": 123,
"createdAt": 123,
"updatedAt": 123,
"review": 123
}
}
}
}Query
List fees
Returns fee records assessed against merchants, including per-transaction and recurring fees. Supports the standard query envelope.
POST
https://sandbox-platform.jupico.com
/
v1
/
query
/
fees
List fees
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/fees \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/fees"
payload = {}
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({})
};
fetch('https://sandbox-platform.jupico.com/v1/query/fees', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/fees';
const options = {
method: 'POST',
headers: {Authorization: 'Basic <encoded-value>', 'Content-Type': 'application/json'},
body: JSON.stringify({})
};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));{
"success": true,
"message": "<string>",
"code": "<string>",
"data": [
{
"_id": "<string>",
"review": {
"enabled": true,
"logs": [
"<string>"
]
},
"platformFee": 123,
"spProductFee": 123,
"batchPayoutId": "<string>",
"status": "<string>",
"transaction": {
"transactionId": "<string>",
"dynamicFee": true,
"platformFixedFee": 123,
"platformDiscountRate": 123,
"platformReturnRate": 123,
"platformReverseFixed": 123,
"platformReverseDiscountRate": 123,
"platformParentFixedFee": 123,
"spProductParentFixedFee": 123,
"spProductFixedFee": 123,
"spProductDiscountRate": 123,
"spProductReturnRate": 123,
"spProductReverseFixed": 123,
"spProductReverseDiscountRate": 123,
"txAmount": 123,
"txBalanceAmount": 123,
"referenceNumber": "<string>",
"txOperation": "<string>"
},
"txDate": "<string>",
"fee": 123,
"type": "<string>",
"subMerchantId": "<string>",
"spProductId": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
],
"count": 123,
"query": {
"criteria": {
"isDeleted": {
"$in": [
true
]
}
},
"options": {
"fields": {
"_id": 123,
"transaction": 123,
"schedule": 123,
"chargeback": 123,
"platformFee": 123,
"spProductFee": 123,
"batchPayoutId": 123,
"status": 123,
"txDate": 123,
"fee": 123,
"type": 123,
"subMerchantId": 123,
"spProductId": 123,
"createdAt": 123,
"updatedAt": 123,
"review": 123
}
}
}
}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.
Response
200 - application/json
findAllTransactions
Whether the request was processed successfully. Declines return HTTP 200 with success: false.
Human-readable result message.
Machine-readable result code. See the Error Codes reference.
The response payload.
Show child attributes
Show child attributes
Number of records.
Echo of the query envelope that produced this result.
Show child attributes
Show child attributes
Last modified on July 14, 2026
Was this page helpful?
⌘I

