Skip to main content
Create adjudication + terms using authorization_id
curl --request POST \
  --url https://api.sandbox.thrivory.com/v1/claims/adjudications \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "authorization_id": "<string>",
  "funding": {
    "desired_date": "2023-12-25"
  },
  "payout_account_token": "<string>"
}
'
{
  "settlement_id": "<string>",
  "terms": {
    "advance_percentage": 123,
    "advance_amount": 123,
    "fees_estimate": 123
  },
  "expected_reimbursement": 123,
  "expected_payment_date": "2023-12-25"
}

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

Body

application/json
authorization_id
string
required
funding
object
required
payout_account_token
string

Response

Adjudication created

settlement_id
string
required
decision
enum<string>
required
Available options:
approved,
declined,
manual_review
status
enum<string>
required
Available options:
pending_confirmation,
approved,
declined,
canceled,
funded
terms
object
expected_reimbursement
number
expected_payment_date
string<date>