Skip to main content
GET
/
v2
/
issuer
/
claims
/
{claim_id}
Retrieve a claim
curl --request GET \
  --url https://api.decisionly.com/v2/issuer/claims/{claim_id} \
  --header 'Authorization: Basic <encoded-value>'
{
  "cases": [
    {
      "cardholder": {
        "billing_address": {
          "city": "San Francisco",
          "country": "US",
          "line1": "742 Evergreen Terrace",
          "line2": "Unit 5B",
          "postal_code": "94102",
          "state": "CA"
        },
        "email": "jane@example.com",
        "name": "Jane Smith",
        "type": "individual"
      },
      "case_id": "case_abc123",
      "claim_id": "claim_abc123",
      "closed_reason": null,
      "created": "2025-02-01T00:00:00.000Z",
      "dispute": {
        "amount": 5000,
        "currency": "USD",
        "date": "2025-01-15T00:00:00.000Z",
        "raised_by": "cardholder"
      },
      "issuer_evidence": {
        "cardholder_explanation": "I never received this product"
      },
      "merchant": {
        "category_code": "5812",
        "name": "Example Merchant"
      },
      "reason": "product_not_received",
      "status": "created",
      "transaction": {
        "amount": 5000,
        "arn": "12345678901234567890123",
        "card": {
          "expiry_month": 12,
          "expiry_year": 2028,
          "last4": "4242",
          "network": "mastercard",
          "type": "credit"
        },
        "currency": "USD",
        "date": "2025-01-15T00:00:00.000Z",
        "system": "dual_message"
      }
    }
  ],
  "claim_id": "claim_abc123",
  "created": "2025-02-01T00:00:00.000Z",
  "status": "open"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

claim_id
string
required

Response

Returns the claim with all cases.

cases
object[]

All cases associated with this claim.

claim_id
string

Unique identifier for the claim.

Example:

"claim_abc123"

created
string<date-time>

When the claim was created. ISO 8601 format.

Example:

"2025-02-01T00:00:00.000Z"

status
enum<string>

The status of the claim.

Available options:
open,
filed,
closed
Example:

"open"