Claim $status

post/Claim/$status
Page View

This resource contains the financial details for provider services for a patient visit or treatment. Healthcare organizations can use this resource to request reimbursement, while payers can review this resource to process claims and respond with the ClaimResponse resource.

You can submit, check, or add to claim information using one of the supported operations.

$status

Check the status of a previously submitted claim and associated line items.

The claim must have been successfully submitted, and you must have the generated claim ID to check the status.

Request parameters and payload

cURL request example

bash
1
curl 'https://api.redoxengine.com/fhir/R4/{destinationSlug}/{environmentFlag}/Claim/$status' \
2
--request POST \
3
--header 'Authorization: Bearer $API_TOKEN' \
4
--header 'Content-Type: application/fhir+json' \
5
--data '{
6
"resourceType": "Bundle",
7
"id": "InstitutionalClaimStatusCheckBundle",
8
"type": "collection",
9
"identifier": {
10
"system": "urn:ietf:rfc:3986",
11
"value": "urn:uuid:59f129cf-2eca-4965-88f2-452558af1934"
12
},
13
"timestamp": "2021-10-21T19:09:02.452Z",
14
"entry": [
15
{
16
"resource": {
17
"resourceType": "Claim",
18
"id": "InstitutionalClaimStatusCheck",
19
"status": "active",
20
"use": "claim",
21
"identifier": [
22
{
23
"system": "http://myclaim.id",
24
"value": "123476789"
25
}
26
],
27
"type": {
28
"coding": [
29
{
30
"code": "institutional",
31
"system": "http://terminology.hl7.org/CodeSystem/claim-type"
32
}
33
]
34
},
35
"patient": {
36
"reference": "Patient/RedoxPABeneficiaryExample"
37
},
38
"created": "2022-01-18T16:27:49.101Z",
39
"total": {
40
"value": 89.93,
41
"currency": "USD"
42
},
43
"provider": {
44
"reference": "Organization/RedoxPARequestorOrganizationExample"
45
},
46
"priority": {
47
"coding": [
48
{
49
"code": "normal",
50
"system": "http://terminology.hl7.org/CodeSystem/processpriority"
51
}
52
]
53
},
54
"insurance": [
55
{
56
"sequence": 1,
57
"focal": true,
58
"coverage": {
59
"reference": "Coverage/RedoxPACoverageExample"
60
}
61
}
62
],
63
"item": [
64
{
65
"sequence": 1,
66
"id": "12387414",
67
"productOrService": {
68
"coding": [
69
{
70
"code": "85025",
71
"system": "http://www.ama-assn.org/go/cpt",
72
"display": "Blood count; complete (CBC)"
73
}
74
],
75
"text": "Blood count; complete (CBC)"
76
},
77
"revenue": {
78
"coding": [
79
{
80
"code": "0305",
81
"system": "https://www.nubc.org/CodeSystem/RevenueCodes",
82
"display": "Laboratory"
83
}
84
]
85
},
86
"quantity": {
87
"value": 1
88
},
89
"unitPrice": {
90
"value": 13.39,
91
"currency": "USD"
92
},
93
"servicedPeriod": {
94
"start": "2022-01-18T16:20:00.101Z",
95
"end": "2022-01-19T16:20:00.101Z"
96
}
97
},
98
{
99
"sequence": 2,
100
"id": "5352523553",
101
"productOrService": {
102
"coding": [
103
{
104
"code": "93005",
105
"system": "http://www.ama-assn.org/go/cpt",
106
"display": "Electrocardiogram, routine ECG with at least 12 leads"
107
}
108
],
109
"text": "Electrocardiogram, routine"
110
},
111
"revenue": {
112
"coding": [
113
{
114
"code": "0730",
115
"system": "https://www.nubc.org/CodeSystem/RevenueCodes",
116
"display": "EKG/ECG (Electrocardiogram)"
117
}
118
]
119
},
120
"quantity": {
121
"value": 3
122
},
123
"locationCodeableConcept": {
124
"coding": [
125
{
126
"code": "21",
127
"system": "https://www.cms.gov/Medicare/Coding/place-of-service-codes/Place_of_Service_Code_Set",
128
"display": "HOSPITAL - INPATIENT HOSPITAL"
129
}
130
]
131
},
132
"unitPrice": {
133
"value": 76.54,
134
"currency": "USD"
135
},
136
"servicedPeriod": {
137
"start": "2022-01-18T17:20:00.101Z",
138
"end": "2022-01-18T17:40:00.101Z"
139
}
140
}
141
]
142
}
143
},
144
{
145
"resource": {
146
"resourceType": "Patient",
147
"id": "RedoxPABeneficiaryExample",
148
"identifier": [
149
{
150
"system": "urn:redox:MRN",
151
"value": "M23462346"
152
}
153
],
154
"name": [
155
{
156
"given": [
157
"Timothy",
158
"Paul"
159
],
160
"family": "Bixby"
161
}
162
],
163
"gender": "male",
164
"birthDate": "2008-01-06"
165
}
166
},
167
{
168
"resource": {
169
"resourceType": "Coverage",
170
"id": "RedoxPACoverageExample",
171
"class": [
172
{
173
"type": {
174
"coding": [
175
{
176
"code": "group",
177
"system": "http://terminology.hl7.org/CodeSystem/coverage-class"
178
}
179
]
180
},
181
"value": "GRP2245"
182
}
183
],
184
"status": "active",
185
"beneficiary": {
186
"reference": "Patient/RedoxPABeneficiaryExample"
187
},
188
"payor": [
189
{
190
"reference": "Organization/RedoxPAInsurerOrganizationExample"
191
}
192
],
193
"subscriber": {
194
"reference": "Patient/RedoxPABeneficiaryExample"
195
},
196
"subscriberId": "T75644"
197
}
198
},
199
{
200
"resource": {
201
"resourceType": "Organization",
202
"id": "RedoxPARequestorOrganizationExample",
203
"active": true,
204
"name": "Good Health Clinics",
205
"address": [
206
{
207
"line": [
208
"123 Main St."
209
],
210
"city": "Madison",
211
"district": "Dane",
212
"state": "WI",
213
"postalCode": "53703",
214
"country": "USA"
215
}
216
]
217
}
218
},
219
{
220
"resource": {
221
"resourceType": "Organization",
222
"id": "RedoxPAInsurerOrganizationExample",
223
"active": true,
224
"name": "Aetna",
225
"address": [
226
{
227
"line": [
228
"PO Box 14080"
229
],
230
"city": "Lexington",
231
"district": "Fayette",
232
"state": "KY",
233
"postalCode": "40512-4079",
234
"country": "USA"
235
}
236
]
237
}
238
},
239
{
240
"resource": {
241
"resourceType": "Practitioner",
242
"id": "RedoxPractitionerExamplePat",
243
"identifier": [
244
{
245
"system": "http://hl7.org/fhir/sid/us-npi",
246
"value": "4356789876"
247
}
248
],
249
"name": [
250
{
251
"given": [
252
"Pat"
253
],
254
"family": "Granite"
255
}
256
],
257
"address": [
258
{
259
"line": [
260
"123 Main St."
261
],
262
"city": "Madison",
263
"district": "Dane",
264
"state": "WI",
265
"postalCode": "53703",
266
"country": "USA"
267
}
268
],
269
"telecom": [
270
{
271
"value": "+16085551234"
272
}
273
]
274
}
275
},
276
{
277
"resource": {
278
"resourceType": "Practitioner",
279
"id": "RedoxPractitionerExampleJoan",
280
"identifier": [
281
{
282
"system": "http://hl7.org/fhir/sid/us-npi",
283
"value": "4336749876"
284
}
285
],
286
"name": [
287
{
288
"given": [
289
"Joan"
290
],
291
"family": "Fishman"
292
}
293
],
294
"address": [
295
{
296
"line": [
297
"4762 Hickory St."
298
],
299
"city": "Monroe",
300
"district": "Green",
301
"state": "WI",
302
"postalCode": "53566",
303
"country": "USA"
304
}
305
],
306
"telecom": [
307
{
308
"value": "+16085558899"
309
}
310
]
311
}
312
}
313
]
314
}'

Request Body Schema

  • resourceType
    required, string

    Identifies the type of the resource

    Value: Bundle
  • type
    required, string

    Indicates the purpose of this bundle - how it is intended to be used.

    Value: collection
  • entry
    required, Array of Claim, Patient, Coverage, Location, Practitioner, RelatedPerson or Other

    An array of FHIR resources. At a minimum, a the claim status request should include the following entries:

    • Claim - the most important part of the request - contains references to all other resources, details adjudication at the appropriate levels.
    • Patient - the patient the claim is for.
    • Organization - at least one resource representing the party responsible for making the claim. Additional organization resources may carry information such as pharmacy, payor, or policy holder.
    • Practitioner - for professional claims the provider submitting the claim
    • Coverage - the patient's insurance
    • resource
      required, object

      The Resource for the entry. The purpose/meaning of the resource is determined by the Bundle.type.

      • resourceType
        required, string

        Identifies the type of the resource

        Value: Claim
      • id
        required, string

        A global unique identifier for the Claim - this should correspond to the initial Claim.id sent.

      • status
        required, string

        The status of the resource instance.

        Value: active
      • type
        required, object

        Type of claim. Example Codes The recommended system is http://terminology.hl7.org/CodeSystem/claim-type. Typical values include

        • pharmacy - Pharmacy claims for goods and services
        • professional - Typically outpatient claims such as Psychological, Chiropractor, rehabilitative, consulting
        • institutional - Hospital, clinic and other inpatient claims
        • coding
          Array of object

          A reference to a code defined by a terminology system.

          • system
            string

            The identification of the code system that defines the meaning of the symbol in the code.

          • code
            string

            A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

        • text
          string

          A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user.

      • use
        required, string

        A code to indicate whether the nature of the request is: to request adjudication of products and services previously rendered; or requesting authorization and adjudication for provision in the future; or requesting the non-binding adjudication of the listed products and services which could be provided in the future.

        Value: claim
      • patient
        required, object

        The party to whom the professional services and/or products have been supplied or are being considered and for whom actual or forecast reimbursement is sought.

        Must be a resource of type Patient.

        • reference
          string

          A reference to a Patient resource

      • created
        required, string

        The date this resource was created.

      • provider
        required, object

        The provider which is responsible for the claim, predetermination or preauthorization.

        Must reference one of the following types of resources:

        • Practitioner
        • Organization
        • reference
          string

          A reference to either an Organization or Provider.

      • priority
        required, object

        The provider-required urgency of processing the request. Typical values include: stat, routine, and deferred. If sending one of these statuses, use the system http://terminology.hl7.org/CodeSystem/processpriority

        • coding
          Array of object

          A reference to a code defined by a terminology system.

          • system
            string

            The identification of the code system that defines the meaning of the symbol in the code.

          • code
            string

            A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

        • text
          string

          A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user.

      • insurance
        required, Array of object

        Financial instruments for reimbursement for the health care products and services specified on the claim.

        • sequence
          required, number

          A number to uniquely identify insurance entries and provide a sequence of coverages to convey coordination of benefit order.

        • focal
          required, boolean

          A flag to indicate that this Coverage is to be used for adjudication of this claim when set to true.

        • coverage
          required, object

          Reference to Coverage resource for patient.

          Must be a resource of type Coverage.

          • reference
            string

            A reference to another resource. This is typically either a relative reference which includes the resource type and ID, or an internal reference which starts with # and refers to a contained resource.

        • businessArrangement
          string

          A business agreement number established between the provider and the insurer for special business processing purposes.

      • insurer
        object

        The Insurer who is target of the request.

        Must be a resource of type Organization.

        • reference
          string

          A reference to an Organization resource

      • item
        Array of object

        A claim line. Either a simple product or service or a 'group' of details which can each be a simple items or groups of sub-details.

        • sequence
          required, number

          A number to uniquely identify item entries.

        • productOrService
          required, object

          For prior auth, the requestedService extension carries more information than this field, and this field should just duplicate the product or service code found in that resource.

          • coding
            Array of object

            A reference to a code defined by a terminology system.

            • system
              string

              The identification of the code system that defines the meaning of the symbol in the code.

            • code
              string

              A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

          • text
            string

            A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user.

        • id
          string

          A unique id for the line item. This can be used on subsequent status checks to get-line-level status information.

        • quantity
          object

          The number of repetitions of a service or product.

          • value
            number

            The value of the measured amount. The value includes an implicit precision in the presentation of the value.

          • _value
            object

            This element contains extensions for value. Depending on the extensions present it could be used in place of value or contain additional information about value. See the extension element for more details on the possible extensions being sent.

            • extension
              Array of Precision or Other

              A Precision extension allows the communication of values more precise than a JSON number, for example, 3.10 as opposed to just 3.1.

                Explicit precision of the number. If the actual value is 3.10, the value field will contain the number 3.1 while the precision extension will contain 2.

                See http://hl7.org/fhir/StructureDefinition/quantity-precision for more information

              • url
                required, string

                Source of the definition for the extension code - a logical name or a URL.

                Value: http://hl7.org/fhir/StructureDefinition/quantity-precision
              • valueInteger
                required, number

                Number of significant decimal places after the decimal.

          • unit
            string

            A human-readable form of the unit.

        • servicedPeriod
          object

          The date or dates when the service or product was supplied, performed or completed.

          • start
            string

            The start of the period. The boundary is inclusive.

          • end
            string

            The end of the period. If the end of the period is missing, it means no end was known or planned at the time the instance was created. The start may be in the past, and the end date in the future, which means that period is expected/planned to end at that time.

        • locationCodeableConcept
          object

          Where the product or service was provided.

          • coding
            Array of object

            A reference to a code defined by a terminology system.

            • system
              string

              The identification of the code system that defines the meaning of the symbol in the code.

            • code
              string

              A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

          • text
            string

            A human language representation of the concept as seen/selected/uttered by the user who entered the data and/or which represents the intended meaning of the user.

      • total
        object

        The total value of the all the items in the claim.

        • value
          number

          Numerical value (with implicit precision).

        • currency
          string

          ISO 4217 Currency Code (e.g. USD for US Dollar)

Response fields and example

Example payload generated from schema
1
{
2
"resourceType": "OperationOutcome",
3
"issue": [
4
{
5
"id": "string",
6
"severity": "fatal",
7
"code": "string",
8
"details": {
9
"coding": [
10
{
11
"system": "string",
12
"code": "string"
13
}
14
],
15
"text": "string"
16
},
17
"diagnostics": "string"
18
}
19
]
20
}
  • resourceType
    required, string

    Identifies the type of the resource

    Value: OperationOutcome
  • issue
    required, Array of object

    A structured respresentation of the error that occurred

    • severity
      required, string

      Generally error or fatal

      Possible Values: fatal, error, warning, information
    • code
      required, string

      A FHIR category code that describes the general type of issue. See http://hl7.org/fhir/ValueSet/issue-type for details

    • id
      string

      If the error occurs in the RedoxEngine, this corresponds to an Error record in the organization.

    • details
      object

      Additional details about the error. This may be a text description of the error or a system code that identifies the error.

      • coding
        Array of object

        A more granular FHIR code for the specific error. Typically from http://hl7.org/fhir/ValueSet/operation-outcome

        • system
          string

          The identification of the code system that defines the meaning of the symbol in the code.

        • code
          string

          A symbol in syntax defined by the system. The symbol may be a predefined code or an expression in a syntax defined by the coding system (e.g. post-coordination).

      • text
        string

        A human-readable interpretation of the issue code

    • diagnostics
      string

      Additional diagnostic information about the issue.