Fee SchedulesV3

Get Match

GET
Gets the rate that matches a service line. No result means no rate exists matching the service line's dimensions.

Path parameters

service_line_idUUIDRequired

Response

This endpoint returns an optional object
threshold
object
Threshold and dollar amount matching for a service line
rate_id
UUID

Errors

GET
1curl https://api.joincandidhealth.com/api/fee-schedules/v3/service-line/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32/match \
2 -H "Authorization: Bearer <token>"
1{
2 "threshold": {
3 "threshold": {
4 "disable_paid_incorrectly": true,
5 "upper_threshold_cents": 0,
6 "lower_threshold_cents": 0
7 },
8 "rate_cents": 0,
9 "match": true,
10 "explanation": "string"
11 },
12 "rate_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"
13}