get https://sandbox.interswitchng.com/arbiter/api/v1/disputes/categories
Use this to get all available dispute categories
REQUEST
Sample Request
{{base_url}}/api/v1/disputes/categories
RESPONSE
Field Name | Description | Type | Constraints |
---|---|---|---|
category | The name of the dispute category | String | |
statuses | A list of the various statuses the dispute category can undergo. | JSON Array |
Sample Response
[
{
"category": "Chargeback",
"statuses": [
"Chargeback",
"Representment",
"Pre Arbitration",
"Pre Arbitration II",
"Arbitration",
"Accepted",
"Declined"
]
},
{
"category": "Co Acquired",
"statuses": [
"Chargeback",
"Representment",
"Pre Arbitration",
"Accepted",
"Declined"
]
},
{
"category": "Good Faith",
"statuses": [
"Good Faith",
"Accepted",
"Declined"
]
},
{
"category": "Government Biller",
"statuses": [
"Accepted"
]
},
{
"category": "Inquiry",
"statuses": [
"Inquiry",
"Accepted",
"Declined"
]
},
{
"category": "Refund",
"statuses": [
"Refund",
"Accepted",
"Declined"
]
},
{
"category": "TSA Biller",
"statuses": [
"Chargeback",
"Accepted",
"Declined"
]
}
]