Skip to main content
POST
/
v2
/
issuer
/
new_claim
Create a claim with cases
curl --request POST \
  --url https://api.decisionly.com/v2/issuer/new_claim \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "claim_id": "claim_abc123",
  "reason": "fraud",
  "cardholder": {
    "name": "Jane Smith",
    "email": "jane@example.com",
    "type": "individual"
  },
  "card": {
    "network": "visa",
    "type": "credit",
    "last4": "4242",
    "expiry_month": 12,
    "expiry_year": 2028
  },
  "dispute": {
    "date": "2025-01-15T00:00:00.000Z",
    "raised_by": "cardholder"
  },
  "issuer_evidence": {
    "cardholder_explanation": "I did not authorize these transactions",
    "documentation": [
      "file_abc123",
      "file_def456"
    ]
  },
  "cases": [
    {
      "case_id": "case_abc123",
      "merchant": {
        "name": "Example Merchant 1",
        "category_code": "5812"
      },
      "transaction": {
        "arn": "12345678901234567890123",
        "date": "2025-01-15T00:00:00.000Z",
        "amount": 5000,
        "currency": "USD",
        "system": "dual_message"
      },
      "dispute": {
        "amount": 5000,
        "currency": "USD"
      }
    },
    {
      "case_id": "case_def456",
      "merchant": {
        "name": "Example Merchant 2",
        "category_code": "5812"
      },
      "transaction": {
        "arn": "98765432109876543210987",
        "date": "2025-01-16T00:00:00.000Z",
        "amount": 3000,
        "currency": "USD",
        "system": "dual_message"
      },
      "dispute": {
        "amount": 3000,
        "currency": "USD"
      }
    }
  ]
}
'
{
"claim_id": "claim_abc123",
"status": "open",
"cases": [
{
"case_id": "case_abc123",
"claim_id": "claim_abc123",
"reason": "fraud",
"cardholder": {
"name": "Jane Smith",
"email": "jane@example.com",
"type": "individual"
},
"merchant": {
"name": "Example Merchant 1",
"category_code": "5812"
},
"transaction": {
"arn": "12345678901234567890123",
"date": "2025-01-15T00:00:00.000Z",
"amount": 5000,
"currency": "USD",
"system": "dual_message",
"card": {
"network": "visa",
"last4": "4242",
"expiry_month": 12,
"expiry_year": 2028,
"type": "credit"
}
},
"dispute": {
"date": "2025-01-15T00:00:00.000Z",
"amount": 5000,
"currency": "USD",
"raised_by": "cardholder"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
},
"status": "created",
"closed_reason": null,
"created": "2025-02-01T00:00:00.000Z"
},
{
"case_id": "case_def456",
"claim_id": "claim_abc123",
"reason": "fraud",
"cardholder": {
"name": "Jane Smith",
"email": "jane@example.com",
"type": "individual"
},
"merchant": {
"name": "Example Merchant 2",
"category_code": "5812"
},
"transaction": {
"arn": "98765432109876543210987",
"date": "2025-01-16T00:00:00.000Z",
"amount": 3000,
"currency": "USD",
"system": "dual_message",
"card": {
"network": "visa",
"last4": "4242",
"expiry_month": 12,
"expiry_year": 2028,
"type": "credit"
}
},
"dispute": {
"date": "2025-01-15T00:00:00.000Z",
"amount": 3000,
"currency": "USD",
"raised_by": "cardholder"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
},
"status": "created",
"closed_reason": null,
"created": "2025-02-01T00:00:00.000Z"
}
],
"created": "2025-02-01T00:00:00.000Z",
"updated": "2025-02-01T00:00:00.000Z"
}

Authorizations

Authorization
string
header
required

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

Body

application/json
reason
enum<string>
required

Dispute reason (applies to all cases in the claim).

Available options:
invalid_authorization,
fraud,
product_not_received,
product_not_as_described,
product_counterfeit,
subscription_canceled,
credit_not_processed,
duplicate_charge,
incorrect_amount,
cash_not_received,
canceled_or_returned,
other
Example:

"fraud"

cases
object[]
required

Array of cases to create (1-35 items). Each case requires the same transaction fields as creating a case individually.

Required array length: 1 - 35 elements
claim_id
string | null

Optional unique identifier for the claim. If not provided, one will be generated automatically.

Maximum string length: 126
Example:

"claim_abc123"

cardholder
object

Details of the cardholder.

card
object

Card information (shared across all cases).

dispute
object

Shared dispute information. The date and raised_by fields are shared across all cases; amount and currency are specified per case.

issuer_evidence
object

Issuer evidence for the dispute.

custom_fields
object

Custom fields (shared across all cases).

Response

Returns the newly created claim with all created cases.

claim_id
string

Unique identifier for the claim.

Example:

"claim_abc123"

status
enum<string>

The status of the claim.

Available options:
open,
filed,
closed
Example:

"open"

cases
object[]

All cases associated with this claim.

created
string<date-time>

When the claim was created. ISO 8601 format.

Example:

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