Skip to main content
POST
/
v2
/
issuer
/
claims
Create a claim
curl --request POST \
  --url https://api.decisionly.com/v2/issuer/claims \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "case_ids": [
    "case_abc123",
    "case_def456",
    "case_ghi789"
  ]
}
'
{
"claim_id": "claim_abc123",
"status": "open",
"cases": [
{
"case_id": "case_abc123"
},
{
"case_id": "case_def456"
}
],
"created": "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
case_ids
string[]
required

Array of case IDs to group into this claim. All cases must already exist.

Minimum array length: 1
Example:
["case_abc123", "case_def456"]
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"

Response

Returns the newly created claim with associated cases.

claim_id
string
Example:

"claim_abc123"

status
string
Example:

"open"

cases
object[]
created
string<date-time>
updated
string<date-time>