Get dispute history
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/disputes/chartslines \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/disputes/chartslines"
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/disputes/chartslines', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/disputes/chartslines';
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": "succeeded",
"code": "0",
"data": [
{
"spProductId": "255",
"facId": "JPT",
"transactionId": "b164e6e2-791c-4831-aefd-003de4d71085",
"txReceivedDate": "210606",
"txType": "41",
"disputeAmount": "0000020773",
"disputeAmountPretty": "207.73",
"networkId": "VISA",
"draftRetrievalNumber": "231268787",
"recordNumber": "112710461802",
"originalTxDate": "10414",
"originalTxTime": "732004",
"merchantChainNumberFromOriginalTx": "6416Y",
"divisionNumberFromOriginalTx": "000",
"totalSegments": "2",
"terminalId": "01",
"registerNumber": "0000",
"chargebackUsageCode": "C",
"adjustmentType": "HBK2",
"draftActionCode": "",
"draftActionCodeDate": "",
"documentIndicator": "1",
"primaryAccountNumber": "53506XXXXXX6148 M",
"chargebackActionCode": "ACP2",
"chargebackActionCodeDate": "106060",
"departmentNumber": "00008",
"issuerCurrencyCode": "405",
"merchantCategoryCode": "812V",
"adjustmentReasonCode": "04 0",
"chargebackReferenceCode": "020870072561",
"dispositionQualifier": "022",
"aRN": "44450011043004499215196",
"merchantChain": "416Y",
"merchantDivisionNumber": "0",
"feeAmount": "0.00",
"salesPersonNumber": "000000000",
"entryMode": "1",
"authorizationSource": "7",
"previousDraftAction": "",
"electronicCommerce": "",
"userDataField1": "",
"userDataField2": "",
"userDataField3": "",
"userDataField4": "",
"commentsFromIssuer": "",
"commentsToIssuer": "",
"commentToMerchant": "",
"commentsFromMerchant": "",
"merchantStoreNumber": "000000092",
"updatedAt": "2024-04-19T00:14:51.690Z",
"createdAt": "2023-04-28T16:46:36.516Z"
}
],
"totals": {
"count": 2
},
"count": 2,
"query": {
"criteria": {},
"options": {
"limit": 1000,
"projection": {
"_id": 0,
"spProductId": 1,
"facId": 1,
"transactionId": 1,
"txReceivedDate": 1,
"txType": 1,
"disputeAmount": 1,
"disputeAmountPretty": 1,
"networkId": 1,
"draftRetrievalNumber": 1,
"recordNumber": 1,
"originalTxDate": 1,
"originalTxTime": 1,
"merchantChainNumberFromOriginalTx": 1,
"divisionNumberFromOriginalTx": 1,
"totalSegments": 1,
"terminalId": 1,
"registerNumber": 1,
"chargebackUsageCode": 1,
"adjustmentType": 1,
"draftActionCode": 1,
"draftActionCodeDate": 1,
"documentIndicator": 1,
"primaryAccountNumber": 1,
"chargebackActionCode": 1,
"chargebackActionCodeDate": 1,
"departmentNumber": 1,
"issuerCurrencyCode": 1,
"merchantCategoryCode": 1,
"adjustmentReasonCode": 1,
"chargebackReferenceCode": 1,
"dispositionQualifier": 1,
"aRN": 1,
"merchantChain": 1,
"merchantDivisionNumber": 1,
"feeAmount": 1,
"salesPersonNumber": 1,
"entryMode": 1,
"authorizationSource": 1,
"previousDraftAction": 1,
"electronicCommerce": 1,
"userDataField1": 1,
"userDataField2": 1,
"userDataField3": 1,
"userDataField4": 1,
"commentsFromIssuer": 1,
"commentsToIssuer": 1,
"commentToMerchant": 1,
"commentsFromMerchant": 1,
"merchantStoreNumber": 1,
"updatedAt": 1,
"createdAt": 1
}
}
}
}Query
Get dispute history
Returns the event timeline for disputes, detailing each stage and status change.
POST
https://sandbox-platform.jupico.com
/
v1
/
query
/
disputes
/
chartslines
Get dispute history
curl --request POST \
--url https://sandbox-platform.jupico.com/v1/query/disputes/chartslines \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '{}'import requests
url = "https://sandbox-platform.jupico.com/v1/query/disputes/chartslines"
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/disputes/chartslines', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));const url = 'https://sandbox-platform.jupico.com/v1/query/disputes/chartslines';
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": "succeeded",
"code": "0",
"data": [
{
"spProductId": "255",
"facId": "JPT",
"transactionId": "b164e6e2-791c-4831-aefd-003de4d71085",
"txReceivedDate": "210606",
"txType": "41",
"disputeAmount": "0000020773",
"disputeAmountPretty": "207.73",
"networkId": "VISA",
"draftRetrievalNumber": "231268787",
"recordNumber": "112710461802",
"originalTxDate": "10414",
"originalTxTime": "732004",
"merchantChainNumberFromOriginalTx": "6416Y",
"divisionNumberFromOriginalTx": "000",
"totalSegments": "2",
"terminalId": "01",
"registerNumber": "0000",
"chargebackUsageCode": "C",
"adjustmentType": "HBK2",
"draftActionCode": "",
"draftActionCodeDate": "",
"documentIndicator": "1",
"primaryAccountNumber": "53506XXXXXX6148 M",
"chargebackActionCode": "ACP2",
"chargebackActionCodeDate": "106060",
"departmentNumber": "00008",
"issuerCurrencyCode": "405",
"merchantCategoryCode": "812V",
"adjustmentReasonCode": "04 0",
"chargebackReferenceCode": "020870072561",
"dispositionQualifier": "022",
"aRN": "44450011043004499215196",
"merchantChain": "416Y",
"merchantDivisionNumber": "0",
"feeAmount": "0.00",
"salesPersonNumber": "000000000",
"entryMode": "1",
"authorizationSource": "7",
"previousDraftAction": "",
"electronicCommerce": "",
"userDataField1": "",
"userDataField2": "",
"userDataField3": "",
"userDataField4": "",
"commentsFromIssuer": "",
"commentsToIssuer": "",
"commentToMerchant": "",
"commentsFromMerchant": "",
"merchantStoreNumber": "000000092",
"updatedAt": "2024-04-19T00:14:51.690Z",
"createdAt": "2023-04-28T16:46:36.516Z"
}
],
"totals": {
"count": 2
},
"count": 2,
"query": {
"criteria": {},
"options": {
"limit": 1000,
"projection": {
"_id": 0,
"spProductId": 1,
"facId": 1,
"transactionId": 1,
"txReceivedDate": 1,
"txType": 1,
"disputeAmount": 1,
"disputeAmountPretty": 1,
"networkId": 1,
"draftRetrievalNumber": 1,
"recordNumber": 1,
"originalTxDate": 1,
"originalTxTime": 1,
"merchantChainNumberFromOriginalTx": 1,
"divisionNumberFromOriginalTx": 1,
"totalSegments": 1,
"terminalId": 1,
"registerNumber": 1,
"chargebackUsageCode": 1,
"adjustmentType": 1,
"draftActionCode": 1,
"draftActionCodeDate": 1,
"documentIndicator": 1,
"primaryAccountNumber": 1,
"chargebackActionCode": 1,
"chargebackActionCodeDate": 1,
"departmentNumber": 1,
"issuerCurrencyCode": 1,
"merchantCategoryCode": 1,
"adjustmentReasonCode": 1,
"chargebackReferenceCode": 1,
"dispositionQualifier": 1,
"aRN": 1,
"merchantChain": 1,
"merchantDivisionNumber": 1,
"feeAmount": 1,
"salesPersonNumber": 1,
"entryMode": 1,
"authorizationSource": 1,
"previousDraftAction": 1,
"electronicCommerce": 1,
"userDataField1": 1,
"userDataField2": 1,
"userDataField3": 1,
"userDataField4": 1,
"commentsFromIssuer": 1,
"commentsToIssuer": 1,
"commentToMerchant": 1,
"commentsFromMerchant": 1,
"merchantStoreNumber": 1,
"updatedAt": 1,
"createdAt": 1
}
}
}
}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
findDisputesChartLines
Whether the request was processed successfully. Declines return HTTP 200 with success: false.
Example:
true
Human-readable result message.
Example:
"succeeded"
Machine-readable result code. See the Error Codes reference.
Example:
"0"
The response payload.
Show child attributes
Show child attributes
Aggregate totals across all returned records.
Show child attributes
Show child attributes
Number of records.
Example:
2
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

