Fee SchedulesV3

Set Payer Threshold

PUT
Sets the threshold information for a payer

Path parameters

payer_uuidUUIDRequired

Request

This endpoint expects an object.
disable_paid_incorrectly
booleanRequired
upper_threshold_cents
integerOptional
lower_threshold_cents
integerOptional

Response

This endpoint returns an object
disable_paid_incorrectly
boolean
upper_threshold_cents
integerOptional
lower_threshold_cents
integerOptional

Errors

PUT
1curl -X PUT https://api.joincandidhealth.com/api/fee-schedules/v3/payer-threshold/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32 \
2 -H "Authorization: Bearer <token>" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "disable_paid_incorrectly": true
6}'
1{
2 "disable_paid_incorrectly": true,
3 "upper_threshold_cents": 0,
4 "lower_threshold_cents": 0
5}