Fee SchedulesV3

Get Rate History

GET
Gets every version of a rate.

Path parameters

rate_idUUIDRequired

Response

This endpoint returns a list of objects
rate_id
UUID
dimensions
object
The dimension values that distinguish this rate from others.
version
integer
The version of this rate in the system.
updated_at
date
updated_by
UUID
entries
list of objects

A rate value in cents for a specific time range. Rate entries can be deactivated, which is set by using the deelte_rate endpoint. Deactivated rate entries are not considered when matching against service lines.

Errors

GET
1curl https://api.joincandidhealth.com/api/fee-schedules/v3/d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32/history \
2 -H "Authorization: Bearer <token>"
1[
2 {
3 "rate_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
4 "dimensions": {
5 "payer_uuid": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
6 "organization_billing_provider_id": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
7 "states": [
8 "AA"
9 ],
10 "zip_codes": [
11 "string"
12 ],
13 "license_types": [
14 "MD"
15 ],
16 "facility_type_codes": [
17 "01"
18 ],
19 "network_types": [
20 "12"
21 ],
22 "cpt_code": "string",
23 "modifiers": [
24 "22"
25 ]
26 },
27 "version": 0,
28 "updated_at": "2023-01-01",
29 "updated_by": "d5e9c84f-c2b2-4bf4-b4b0-7ffd7a9ffc32",
30 "entries": [
31 {
32 "start_date": "2023-01-01",
33 "rate_cents": 0,
34 "is_deactivated": true,
35 "end_date": "2023-01-01"
36 }
37 ]
38 }
39]