Get Dispute Categories

Use this to get all available dispute categories

REQUEST

Sample Request

{{base_url}}/api/v1/disputes/categories

RESPONSE

Field NameDescriptionTypeConstraints
categoryThe name of the dispute categoryString
statusesA 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"
        ]
    }
]
Language
Authorization
OAuth2
Click Try It! to start a request and see the response here!