Skip to main content
Bulk import historical claims (async job)
curl --request POST \
  --url https://api.sandbox.thrivory.com/v1/imports/claims \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "format": "ndjson",
  "payload": "<string>",
  "encoding": "none",
  "mapping": {}
}
'
{
  "job_id": "<string>",
  "submitted_at": "2023-11-07T05:31:56Z",
  "errors": [
    {
      "error": "<string>",
      "message": "<string>",
      "request_id": "<string>",
      "details": {}
    }
  ]
}

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
format
enum<string>
default:ndjson
required
Available options:
ndjson,
csv
payload
string
required

Base64-encoded file payload (chunked uploads may be added later)

encoding
enum<string>
default:none
Available options:
gzip,
none
mapping
object

Optional field mapping if your headers differ from defaults

Response

Job accepted

job_id
string
required
status
enum<string>
required
Available options:
queued,
running,
succeeded,
failed
submitted_at
string<date-time>
required
errors
object[]