POST
/
public
/
v1
/
benefits-checks
/
curl --request POST \
  --url https://api.silnahealth.com/public/v1/benefits-checks/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "patient_plan_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "specialties": [
    "PHYSICAL_THERAPY"
  ]
}'
{
  "benefits_check_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}
This endpoint supports idempotency keys

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

idempotency-key
string

Unique key to prevent duplicate requests. We support keys up to 255 characters.

Required string length: 1 - 255

Body

application/json
Benefits Check Create Request Schema

Benefits Check Create Request Schema

Response

201
application/json
Benefits Check Create Response Schema

Benefits Check Create Response Schema