Skip to main content
GET
/
v2
/
issuer
/
cases
List all cases
curl --request GET \
  --url https://api.decisionly.com/v2/issuer/cases \
  --header 'Authorization: Basic <encoded-value>'
{
  "has_more": true,
  "data": [
    {
      "case_id": "case_abc123",
      "reason": "fraud",
      "cardholder": {
        "name": "Jane Smith",
        "email": "jane@example.com",
        "issuer_id": "9529456289",
        "type": "individual"
      },
      "merchant": {
        "name": "FoodHub",
        "category_code": "5812",
        "issuer_id": "8201132789"
      },
      "transaction": {
        "date": "2025-01-15T00:00:00.000Z",
        "amount": 2990,
        "currency": "USD",
        "card": {
          "network": "visa",
          "last4": "4242",
          "type": "credit",
          "expiry_month": 12,
          "expiry_year": 2028,
          "issuer_id": "b5te350d5135ab64a8t3c1097tadetd9ettb"
        },
        "arn": "48162855246353338636162",
        "switch_serial_number": "242025095",
        "issuer_id": "85cfda4d06b8440db3ec15af04061c98",
        "system": "dual_message"
      },
      "dispute": {
        "date": "2025-02-01T00:00:00.000Z",
        "amount": 2990,
        "currency": "USD",
        "raised_by": "cardholder"
      },
      "issuer_evidence": {
        "cardholder_explanation": "<string>",
        "issuer_explanation": "<string>",
        "amount_correction": {
          "amount": 123,
          "currency": "<string>"
        },
        "prior_transaction": {
          "arn": "48162855246353338636162",
          "switch_serial_number": "242025095",
          "issuer_id": "85cfda4d06b8440db3ec15af04061c98",
          "date": "2023-11-07T05:31:56Z",
          "amount": 123,
          "currency": "<string>",
          "system": "single_message",
          "card": {
            "network": "visa",
            "last4": "4242",
            "type": "credit",
            "expiry_month": 12,
            "expiry_year": 2028,
            "issuer_id": "b5te350d5135ab64a8t3c1097tadetd9ettb"
          }
        },
        "merchant_contact": {
          "date": "2023-11-07T05:31:56Z",
          "was_successful": true,
          "description": "<string>",
          "prohibited_reason": "<string>"
        },
        "return": {
          "date": "2023-11-07T05:31:56Z",
          "was_successful": true,
          "description": "<string>",
          "policy_provided": true,
          "shipping": {
            "carrier": "<string>",
            "tracking_number": "<string>"
          }
        },
        "delivery": {
          "date": "2023-11-07T05:31:56Z",
          "expected_date": "2023-11-07T05:31:56Z"
        },
        "service": {
          "end_date": "2023-11-07T05:31:56Z"
        },
        "product": {
          "order_id": "<string>",
          "description": "<string>",
          "condition": "<string>",
          "type": "merchandise"
        },
        "cancellation": {
          "id": "<string>",
          "date": "2023-11-07T05:31:56Z",
          "description": "<string>",
          "policy_provided": true
        },
        "refund": {
          "was_promised": true,
          "promise_date": "2023-11-07T05:31:56Z",
          "description": "<string>"
        },
        "card": {
          "lost_date": "2023-11-07T05:31:56Z",
          "is_active": true,
          "cardholder_has_possession": true,
          "possession_at_transaction": "possessed"
        },
        "documentation": [
          "<string>"
        ]
      },
      "custom_fields": {},
      "status": "created",
      "closed_reason": null,
      "created": "2025-02-01T00:00:00.000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Use your API key as the username. No password is required.

Query Parameters

limit
integer
starting_after
string
ending_before
string
status
string

Response

200 - application/json

A JSON array of cases.

has_more
boolean
data
object[]