Chargeback Reporting
Pull chargeback reports, so you can display them in your user interface.
Access Endpoint URL: https://rest.everyware.com/api/chargebacks
You can use the Chargeback Reporting endpoint to pull information regarding the chargebacks associated with your account.
Inbound Parameters
Parameter | Data type | Description | Optional/Required |
---|---|---|---|
StartDate | DateTime | The initial date in the range for the chargebacks that will be pulled in the report. | Optional |
EndDate | DateTime | The end date in the range for the chargebacks that will be pulled in the report. | Optional |
ResolutionDate | DateTime | The date on which the chargeback was resolved. | Optional |
ChargeBackCode | int | The code associated with the chargeback. Can be one of the following:
| Optional |
TransactionNumber | int | The transaction number associated with the chargeback. | Optional |
Response Parameters
Parameter | Description |
---|---|
AccountName | The name associated with the merchant account of the business. |
TransactionNumber | The number in Everyware associated with the transaction. |
ChargebackDate | The date on which the chargeback was issued. |
TransactionAmount | The amount of the original transaction. |
ChargebackAmount | The amount of the chargeback. |
PayeeName | The customer who initiated the chargeback. |
InvoiceNumber | The Everyware order number associated with the original transaction. |
DaysToRepresent | The number of days the business has to dispute the chargeback |
RepresentmentDate | The date on which the chargeback was disputed. |
RepresentmentStatus | The status of the dispute. |
ChargebackResponse | The chargeback reason. |
Result | The result of the dispute. |
ChargebackCode | The specific code associated with the chargeback. |
TransactionInfoId | The ID associated with the transaction. |
Sample Code
{
"StartDate": "01-01-2024",
"EndDate": "02-03-2024",
"ResolutionDate": "",
"ChargeBackCode": "",
"TransactionNumber": null
}
cURL --location 'https://rest.everyware.com/api/chargebacks/' \
-- header 'Authorization: Basic [xxx]' \
-- header 'Content-Type: application/json' \
-- data-raw '{
"StartDate": "01-01-2024",
"EndDate": "02-03-2024",
"ResolutionDate": "",
"ChargeBackCode": "",
"TransactionNumber": null
}'
{
"AccountName": "",
"TransactionNumber": "",
"ChargebackDate": "",
"TransactionAmount": "",
"ChargebackAmount": "",
"PayeeName": "",
"InvoiceNumber": "",
"DaysToRepresent": "",
"RepresentmentDate": "",
"ChargebackResponse": "",
"Result": "",
"ChargebackCode": "",
"TransactionInfoId": ""
}
Updated 21 days ago