Fee SchedulesV3

Test Match

GET
Tests a service line against a rate to see if it matches.

Path parameters

service_line_idUUIDRequired
rate_idUUIDRequired

Response

This endpoint returns an object
dimensions
object
Dimension matching for a service line
threshold
object
Threshold and dollar amount matching for a service line

Errors

GET
1curl https://api.joincandidhealth.com/api/fee-schedules/v3/service-line/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32/match/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32 \
2 -H "Authorization: Bearer <token>"
1{
2 "dimensions": {
3 "payer": {
4 "value": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
5 "match": true,
6 "explanation": "string"
7 },
8 "geography": {
9 "match": true,
10 "explanation": "string",
11 "zip_code": "string",
12 "state": "AA"
13 },
14 "organization_billing_provider": {
15 "match": true,
16 "explanation": "string",
17 "value": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32"
18 },
19 "date_of_service": {
20 "match": true,
21 "explanation": "string",
22 "value": "2023-01-01"
23 },
24 "cpt_code": {
25 "value": "string",
26 "match": true,
27 "explanation": "string"
28 },
29 "modifiers": {
30 "value": [
31 "22"
32 ],
33 "match": true,
34 "explanation": "string"
35 },
36 "license_type": {
37 "match": true,
38 "explanation": "string",
39 "value": "MD"
40 },
41 "facility_type_code": {
42 "match": true,
43 "explanation": "string",
44 "value": "01"
45 },
46 "network_types": {
47 "value": [
48 "12"
49 ],
50 "match": true,
51 "explanation": "string"
52 }
53 },
54 "threshold": {
55 "threshold": {
56 "disable_paid_incorrectly": true,
57 "upper_threshold_cents": 0,
58 "lower_threshold_cents": 0
59 },
60 "rate_cents": 0,
61 "match": true,
62 "explanation": "string"
63 }
64}