Skip to main content
POST
/
v1
/
claim-responses
Create claim response
curl --request POST \
  --url https://api.clinikapi.com/v1/claim-responses \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "type": "<string>",
  "patientId": "<string>",
  "insurerId": "<string>",
  "created": "<string>",
  "requestId": "<string>",
  "disposition": "<string>",
  "preAuthRef": "<string>",
  "payeeType": "<string>",
  "item": [
    {
      "itemSequence": 123,
      "adjudication": [
        {
          "category": "<string>",
          "amount": {
            "value": 123,
            "currency": "<string>"
          }
        }
      ]
    }
  ],
  "total": [
    {
      "category": "<string>",
      "amount": {
        "value": 123,
        "currency": "<string>"
      }
    }
  ],
  "processNote": [
    {
      "text": "<string>",
      "number": 123
    }
  ],
  "note": "<string>"
}
'

Authorizations

x-api-key
string
header
required

Your ClinikAPI secret key (clk_live_* or clk_test_*)

Body

application/json
status
enum<string>
required
Available options:
active,
cancelled,
draft
type
string
required
Maximum string length: 200
use
enum<string>
required
Available options:
claim,
preauthorization,
predetermination
patientId
string
required
Maximum string length: 128
insurerId
string
required
Maximum string length: 128
outcome
enum<string>
required
Available options:
queued,
complete,
error,
partial
created
string
Maximum string length: 50
requestId
string
Maximum string length: 128
disposition
string
Maximum string length: 2000
preAuthRef
string
Maximum string length: 500
payeeType
string
Maximum string length: 200
item
object[]
Maximum array length: 50
total
object[]
Maximum array length: 10
payment
object
processNote
object[]
Maximum array length: 20
note
string
Maximum string length: 5000

Response

201

Claim response created