Skip to main content
Signal a claim status update
curl --request PATCH \
  --url https://api.sandbox.thrivory.com/v1/claims/{claim_id}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "created",
  "reason": "<string>",
  "external_reference": "<string>",
  "effective_at": "2023-11-07T05:31:56Z"
}
'
{
  "claim_id": "<string>",
  "status": "<string>",
  "updated_at": "2023-11-07T05:31:56Z"
}

Documentation Index

Fetch the complete documentation index at: https://docs.thrivory.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Headers

Idempotency-Key
string

Provide a unique key per request to enable safe retries

Path Parameters

claim_id
string
required

Body

application/json
status
enum<string>
required
Available options:
created,
submitted,
accepted_by_payer,
denied,
paid,
partial_paid,
appealed,
closed
reason
string
external_reference
string
effective_at
string<date-time>

Response

Updated

claim_id
string
required
status
string
required
updated_at
string<date-time>
required