curl --request POST \
--url https://api.decisionly.com/v2/issuer/new_claim \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"card": {
"expiry_month": 12,
"expiry_year": 2028,
"last4": "4242",
"network": "mastercard",
"type": "credit"
},
"cardholder": {
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "742 Evergreen Terrace",
"line2": "Unit 5B",
"postal_code": "94102",
"state": "CA"
},
"email": "jane@example.com",
"issuer_id": "9529456289",
"name": "Jane Smith",
"type": "individual"
},
"cases": [
{
"case_id": "case_abc123",
"dispute": {
"amount": 5000,
"currency": "USD"
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 1"
},
"transaction": {
"amount": 5000,
"arn": "12345678901234567890123",
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"system": "dual_message"
}
},
{
"case_id": "case_def456",
"dispute": {
"amount": 3000,
"currency": "USD"
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 2"
},
"transaction": {
"amount": 3000,
"arn": "98765432109876543210987",
"currency": "USD",
"date": "2026-03-16T00:00:00.000Z",
"system": "dual_message"
}
}
],
"claim_id": "claim_abc123",
"dispute": {
"date": "2026-03-15T00:00:00.000Z",
"raised_by": "cardholder",
"reason": "fraud"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
}
}
'{
"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",
"issuer_id": "9529456289",
"name": "Jane Smith",
"type": "individual"
},
"case_id": "case_abc123",
"claim_id": "claim_abc123",
"created": "2026-04-01T00:00:00.000Z",
"dispute": {
"amount": 5000,
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"raised_by": "cardholder",
"reason": "fraud"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 1"
},
"status": "created",
"transaction": {
"amount": 5000,
"arn": "12345678901234567890123",
"card": {
"expiry_month": 12,
"expiry_year": 2028,
"last4": "4242",
"network": "mastercard",
"type": "credit"
},
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"system": "dual_message"
}
},
{
"cardholder": {
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "742 Evergreen Terrace",
"line2": "Unit 5B",
"postal_code": "94102",
"state": "CA"
},
"email": "jane@example.com",
"issuer_id": "9529456289",
"name": "Jane Smith",
"type": "individual"
},
"case_id": "case_def456",
"claim_id": "claim_abc123",
"created": "2026-04-01T00:00:00.000Z",
"dispute": {
"amount": 3000,
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"raised_by": "cardholder",
"reason": "fraud"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 2"
},
"status": "created",
"transaction": {
"amount": 3000,
"arn": "98765432109876543210987",
"card": {
"expiry_month": 12,
"expiry_year": 2028,
"last4": "4242",
"network": "mastercard",
"type": "credit"
},
"currency": "USD",
"date": "2026-03-16T00:00:00.000Z",
"system": "dual_message"
}
}
],
"claim_id": "claim_abc123",
"created": "2026-04-01T00:00:00.000Z",
"status": "open",
"updated": "2026-04-01T00:00:00.000Z"
}Create a claim with cases
Creates a new claim and all its cases in a single request.
curl --request POST \
--url https://api.decisionly.com/v2/issuer/new_claim \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--data '
{
"card": {
"expiry_month": 12,
"expiry_year": 2028,
"last4": "4242",
"network": "mastercard",
"type": "credit"
},
"cardholder": {
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "742 Evergreen Terrace",
"line2": "Unit 5B",
"postal_code": "94102",
"state": "CA"
},
"email": "jane@example.com",
"issuer_id": "9529456289",
"name": "Jane Smith",
"type": "individual"
},
"cases": [
{
"case_id": "case_abc123",
"dispute": {
"amount": 5000,
"currency": "USD"
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 1"
},
"transaction": {
"amount": 5000,
"arn": "12345678901234567890123",
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"system": "dual_message"
}
},
{
"case_id": "case_def456",
"dispute": {
"amount": 3000,
"currency": "USD"
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 2"
},
"transaction": {
"amount": 3000,
"arn": "98765432109876543210987",
"currency": "USD",
"date": "2026-03-16T00:00:00.000Z",
"system": "dual_message"
}
}
],
"claim_id": "claim_abc123",
"dispute": {
"date": "2026-03-15T00:00:00.000Z",
"raised_by": "cardholder",
"reason": "fraud"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
}
}
'{
"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",
"issuer_id": "9529456289",
"name": "Jane Smith",
"type": "individual"
},
"case_id": "case_abc123",
"claim_id": "claim_abc123",
"created": "2026-04-01T00:00:00.000Z",
"dispute": {
"amount": 5000,
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"raised_by": "cardholder",
"reason": "fraud"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 1"
},
"status": "created",
"transaction": {
"amount": 5000,
"arn": "12345678901234567890123",
"card": {
"expiry_month": 12,
"expiry_year": 2028,
"last4": "4242",
"network": "mastercard",
"type": "credit"
},
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"system": "dual_message"
}
},
{
"cardholder": {
"billing_address": {
"city": "San Francisco",
"country": "US",
"line1": "742 Evergreen Terrace",
"line2": "Unit 5B",
"postal_code": "94102",
"state": "CA"
},
"email": "jane@example.com",
"issuer_id": "9529456289",
"name": "Jane Smith",
"type": "individual"
},
"case_id": "case_def456",
"claim_id": "claim_abc123",
"created": "2026-04-01T00:00:00.000Z",
"dispute": {
"amount": 3000,
"currency": "USD",
"date": "2026-03-15T00:00:00.000Z",
"raised_by": "cardholder",
"reason": "fraud"
},
"issuer_evidence": {
"cardholder_explanation": "I did not authorize these transactions",
"documentation": [
"file_abc123",
"file_def456"
]
},
"merchant": {
"category_code": "5812",
"name": "Example Merchant 2"
},
"status": "created",
"transaction": {
"amount": 3000,
"arn": "98765432109876543210987",
"card": {
"expiry_month": 12,
"expiry_year": 2028,
"last4": "4242",
"network": "mastercard",
"type": "credit"
},
"currency": "USD",
"date": "2026-03-16T00:00:00.000Z",
"system": "dual_message"
}
}
],
"claim_id": "claim_abc123",
"created": "2026-04-01T00:00:00.000Z",
"status": "open",
"updated": "2026-04-01T00:00:00.000Z"
}Authorizations
Use your API key as the username. No password is required.
Body
Array of cases to create (1-35 items). Each case requires the same transaction fields as creating a case individually.
1 - 35 elementsShow child attributes
Show child attributes
Shared dispute information. The reason, date, and raised_by fields are shared across all cases; amount and currency are specified per case.
Show child attributes
Show child attributes
Card information (shared across all cases).
Show child attributes
Show child attributes
Details of the cardholder.
Show child attributes
Show child attributes
Optional unique identifier for the claim. If not provided, one will be generated automatically.
126"claim_abc123"
Custom fields (shared across all cases).
Issuer evidence for the dispute.
Show child attributes
Show child attributes
Response
Returns the newly created claim with all created cases.
All cases associated with this claim.
Show child attributes
Show child attributes
Unique identifier for the claim.
"claim_abc123"
When the claim was created. ISO 8601 format.
"2026-04-01T00:00:00.000Z"
The status of the claim.
open, filed, closed "open"