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

patient_plan_id
string
required

Patient Plan ID

specialties
enum<string>[]
required

List of specialties to create benefits check for

Available options:
PHYSICAL_THERAPY,
ABA_THERAPY,
SPEECH_THERAPY,
OCCUPATIONAL_THERAPY,
PSYCHOLOGICAL_TESTING,
HOME_HEALTH_CARE,
HOSPICE,
CARDIAC_REHABILITATION,
INTENSIVE_CARDIAC_REHABILITATION,
MENTAL_HEALTH
Example:
["PHYSICAL_THERAPY"]

Response

201
application/json
Benefits Check Create Response Schema

Benefits Check Create Response Schema

benefits_check_ids
string[]
required

List of created benefits check IDs