Authorizations
The access token received from the authorization server in the OAuth 2.0 flow.
curl --request GET \
--url https://api.sandbox.thrivory.com/v1/claims/{claim_id} \
--header 'Authorization: Bearer <token>'{
"claim_identifier": "<string>",
"review": {
"authorization_id": "<string>",
"denial_predicted": true,
"denial_reasons": [
{
"code": "<string>",
"description": "<string>"
}
],
"expected_reimbursement": {
"allowed": 123,
"expected": 123
},
"expected_payment_date": "2023-12-25",
"confidence": 0.5,
"id": "<string>"
},
"adjudication": {
"settlement_id": "<string>",
"decision": "approved",
"terms": {
"advance_percentage": 123,
"advance_amount": 123,
"fees_estimate": 123
},
"status": "pending_confirmation",
"expected_reimbursement": 123,
"expected_payment_date": "2023-12-25"
},
"status": {
"claim_id": "<string>",
"status": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
}curl --request GET \
--url https://api.sandbox.thrivory.com/v1/claims/{claim_id} \
--header 'Authorization: Bearer <token>'{
"claim_identifier": "<string>",
"review": {
"authorization_id": "<string>",
"denial_predicted": true,
"denial_reasons": [
{
"code": "<string>",
"description": "<string>"
}
],
"expected_reimbursement": {
"allowed": 123,
"expected": 123
},
"expected_payment_date": "2023-12-25",
"confidence": 0.5,
"id": "<string>"
},
"adjudication": {
"settlement_id": "<string>",
"decision": "approved",
"terms": {
"advance_percentage": 123,
"advance_amount": 123,
"fees_estimate": 123
},
"status": "pending_confirmation",
"expected_reimbursement": 123,
"expected_payment_date": "2023-12-25"
},
"status": {
"claim_id": "<string>",
"status": "<string>",
"updated_at": "2023-11-07T05:31:56Z"
}
}The access token received from the authorization server in the OAuth 2.0 flow.