ClaimResponse $respond

post/ClaimResponse/$respond
Page View

This resource contains claim statuses, payments, or responses. As a payer, you can use this resource to asynchronously respond to claims that were previously submitted by healthcare organizations. 

You can send payment, status updates, or other related asynchronous claim responses with this resource type.

$respond

Send a general response to a claim submission from a healthcare organization.

We support this asynchronous operation for completeness and compliance with the DaVinci PAS specification.

Request parameters and payload

cURL request example

bash
1
curl 'https://api.redoxengine.com/fhir/R4/{destinationSlug}/{environmentFlag}/ClaimResponse/$respond' \
2
--request POST \
3
--header 'Authorization: Bearer $API_TOKEN' \
4
--header 'Content-Type: application/fhir+json' \
5
--data '{
6
"resourceType": "Bundle",
7
"id": "RedoxClaimResponseBundleComprehensiveExample",
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": "ClaimResponse",
18
"id": "RedoxPAClaimResponseExample",
19
"status": "active",
20
"use": "preauthorization",
21
"item": [
22
{
23
"adjudication": [
24
{
25
"category": {
26
"coding": [
27
{
28
"system": "http://terminology.hl7.org/CodeSystem/adjudication",
29
"code": "submitted"
30
}
31
]
32
},
33
"extension": [
34
{
35
"extension": [
36
{
37
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-reviewActionCode",
38
"valueCodeableConcept": {
39
"coding": [
40
{
41
"code": "A1",
42
"system": "https://codesystem.x12.org/005010/306",
43
"display": "Certified in total"
44
}
45
]
46
}
47
},
48
{
49
"url": "number",
50
"valueString": "AUTH1001"
51
}
52
],
53
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-reviewAction"
54
}
55
]
56
}
57
],
58
"extension": [
59
{
60
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-administrationReferenceNumber",
61
"valueString": "REF456"
62
},
63
{
64
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-itemPreAuthIssueDate",
65
"valueDate": "2021-08-23"
66
},
67
{
68
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-itemPreAuthPeriod",
69
"valuePeriod": {
70
"start": "2021-08-23",
71
"end": "2021-09-23"
72
}
73
},
74
{
75
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-itemTraceNumber",
76
"valueIdentifier": {
77
"value": "23462346"
78
}
79
},
80
{
81
"extension": [
82
{
83
"url": "productOrServiceCode",
84
"valueCodeableConcept": {
85
"coding": [
86
{
87
"code": "93451",
88
"system": "http://www.ama-assn.org/go/cpt"
89
}
90
],
91
"text": "Right heart catheterization"
92
}
93
},
94
{
95
"url": "quantity",
96
"valueQuantity": {
97
"value": 1
98
}
99
},
100
{
101
"url": "unitPrice",
102
"valueMoney": {
103
"value": 4966,
104
"currency": "USD"
105
}
106
}
107
],
108
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-itemAuthorizedDetail"
109
}
110
],
111
"itemSequence": 1
112
}
113
],
114
"type": {
115
"coding": [
116
{
117
"code": "professional",
118
"system": "http://terminology.hl7.org/CodeSystem/claim-type"
119
}
120
]
121
},
122
"patient": {
123
"reference": "Patient/RedoxPABeneficiaryExample"
124
},
125
"created": "2021-08-23T16:35:54.648Z",
126
"insurer": {
127
"reference": "Organization/RedoxPAInsurerOrganizationExample"
128
},
129
"requestor": {
130
"reference": "Organization/RedoxPARequestorOrganizationExample"
131
},
132
"request": {
133
"reference": "Claim/RedoxPAServiceClaimExample",
134
"identifier": {
135
"type": {
136
"coding": [
137
{
138
"code": "ClaimID"
139
}
140
]
141
},
142
"value": "urn:uuid:97b8d6d0-ac3d-411a-b32a-e1d237aceb6a"
143
}
144
},
145
"outcome": "complete",
146
"processNote": [
147
{
148
"text": "Covered under extended benefits"
149
}
150
]
151
}
152
},
153
{
154
"resource": {
155
"resourceType": "Patient",
156
"id": "RedoxPABeneficiaryExample",
157
"identifier": [
158
{
159
"system": "urn:redox:MRN",
160
"value": "M23462346"
161
}
162
],
163
"name": [
164
{
165
"given": [
166
"Timothy",
167
"Paul"
168
],
169
"family": "Bixby"
170
}
171
],
172
"gender": "male",
173
"birthDate": "2008-01-06"
174
}
175
},
176
{
177
"resource": {
178
"resourceType": "Coverage",
179
"id": "RedoxPACoverageWithRelatedSubscriberExample",
180
"class": [
181
{
182
"type": {
183
"coding": [
184
{
185
"code": "group",
186
"system": "http://terminology.hl7.org/CodeSystem/coverage-class"
187
}
188
]
189
},
190
"value": "GRP2245"
191
}
192
],
193
"status": "active",
194
"beneficiary": {
195
"reference": "Patient/RedoxPABeneficiaryExample"
196
},
197
"payor": [
198
{
199
"reference": "Organization/RedoxPAInsurerOrganizationExample"
200
}
201
],
202
"subscriber": {
203
"reference": "RelatedPerson/RedoxPASubscriberExample"
204
},
205
"subscriberId": "M2346623"
206
}
207
},
208
{
209
"resource": {
210
"resourceType": "Organization",
211
"id": "RedoxPARequestorOrganizationExample",
212
"active": true,
213
"name": "Good Health Clinics",
214
"address": [
215
{
216
"line": [
217
"123 Main St."
218
],
219
"city": "Madison",
220
"district": "Dane",
221
"state": "WI",
222
"postalCode": "53703",
223
"country": "USA"
224
}
225
]
226
}
227
},
228
{
229
"resource": {
230
"resourceType": "Organization",
231
"id": "RedoxPAInsurerOrganizationExample",
232
"active": true,
233
"name": "Aetna",
234
"address": [
235
{
236
"line": [
237
"PO Box 14080"
238
],
239
"city": "Lexington",
240
"district": "Fayette",
241
"state": "KY",
242
"postalCode": "40512-4079",
243
"country": "USA"
244
}
245
]
246
}
247
},
248
{
249
"resource": {
250
"resourceType": "PractitionerRole",
251
"id": "RedoxPAPractitionerRoleExamplePat",
252
"practitioner": {
253
"reference": "Practitioner/RedoxPAPractitionerExamplePat"
254
},
255
"organization": {
256
"reference": "Organization/RedoxPARequestorOrganizationExample"
257
},
258
"location": [
259
{
260
"display": "1st Street Family Clinic"
261
}
262
],
263
"specialty": [
264
{
265
"coding": [
266
{
267
"code": "394579002",
268
"system": "http://snomed.info/sct",
269
"display": "Cardiology"
270
}
271
]
272
}
273
]
274
}
275
},
276
{
277
"resource": {
278
"resourceType": "Practitioner",
279
"id": "RedoxPAPractitionerExamplePat",
280
"identifier": [
281
{
282
"system": "http://hl7.org/fhir/sid/us-npi",
283
"value": "4356789876"
284
}
285
],
286
"name": [
287
{
288
"given": [
289
"Pat"
290
],
291
"family": "Granite"
292
}
293
],
294
"address": [
295
{
296
"line": [
297
"123 Main St."
298
],
299
"city": "Madison",
300
"district": "Dane",
301
"state": "WI",
302
"postalCode": "53703",
303
"country": "USA"
304
}
305
],
306
"telecom": [
307
{
308
"value": "+16085551234"
309
}
310
]
311
}
312
},
313
{
314
"resource": {
315
"resourceType": "RelatedPerson",
316
"id": "RedoxPASubscriberExample",
317
"patient": {
318
"reference": "Patient/RedoxPABeneficiaryExample"
319
},
320
"name": [
321
{
322
"given": [
323
"Barbara"
324
],
325
"family": "Bixby"
326
}
327
],
328
"relationship": [
329
{
330
"text": "Mother"
331
}
332
]
333
}
334
},
335
{
336
"resource": {
337
"resourceType": "Claim",
338
"id": "RedoxPAServiceClaimExample",
339
"status": "active",
340
"use": "preauthorization",
341
"insurance": [
342
{
343
"focal": true,
344
"sequence": 1,
345
"coverage": {
346
"reference": "Coverage/RedoxPACoverageExample"
347
}
348
}
349
],
350
"item": [
351
{
352
"extension": [
353
{
354
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-requestedService",
355
"valueReference": {
356
"reference": "ServiceRequest/RedoxPAServiceRequestExample"
357
}
358
},
359
{
360
"url": "http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-itemTraceNumber",
361
"valueIdentifier": {
362
"value": "23462346"
363
}
364
}
365
],
366
"sequence": 1,
367
"productOrService": {
368
"coding": [
369
{
370
"code": "93456",
371
"system": "http://www.ama-assn.org/go/cpt"
372
}
373
],
374
"text": "Coronary angiography with right heart catheterization"
375
}
376
}
377
],
378
"supportingInfo": [
379
{
380
"category": {
381
"coding": [
382
{
383
"system": "http://hl7.org/fhir/us/davinci-pas/CodeSystem/PASSupportingInfoType",
384
"code": "additionalInformation",
385
"display": "Send additional paperwork or supporting information is sent for the request."
386
}
387
]
388
},
389
"sequence": 1,
390
"valueReference": {
391
"reference": "DocumentReference/RedoxPADocumentReferenceExample"
392
}
393
},
394
{
395
"category": {
396
"coding": [
397
{
398
"system": "http://hl7.org/fhir/us/davinci-pas/CodeSystem/PASSupportingInfoType",
399
"code": "freeFormMessage",
400
"display": "Written Confirmation."
401
}
402
]
403
},
404
"sequence": 2,
405
"valueString": "1"
406
}
407
],
408
"identifier": [
409
{
410
"type": {
411
"coding": [
412
{
413
"code": "ClaimID"
414
}
415
]
416
},
417
"value": "urn:uuid:97b8d6d0-ac3d-411a-b32a-e1d237aceb6a"
418
}
419
],
420
"type": {
421
"coding": [
422
{
423
"code": "professional",
424
"system": "http://terminology.hl7.org/CodeSystem/claim-type"
425
}
426
]
427
},
428
"patient": {
429
"reference": "Patient/RedoxPABeneficiaryExample"
430
},
431
"created": "2021-09-02T18:44:13.307Z",
432
"enterer": {
433
"reference": "PractitionerRole/RedoxPAPractitionerRoleExamplePat"
434
},
435
"insurer": {
436
"reference": "Organization/RedoxPAInsurerOrganizationExample"
437
},
438
"provider": {
439
"reference": "Organization/RedoxPARequestorOrganizationExample"
440
},
441
"priority": {
442
"coding": [
443
{
444
"code": "normal",
445
"system": "http://terminology.hl7.org/CodeSystem/processpriority"
446
}
447
]
448
},
449
"diagnosis": [
450
{
451
"sequence": 1,
452
"diagnosisCodeableConcept": {
453
"coding": [
454
{
455
"code": "I42.9",
456
"system": "http://hl7.org/fhir/sid/icd-10-cm",
457
"display": "Cardiomyopathy, unspecified"
458
}
459
]
460
}
461
}
462
]
463
}
464
}
465
]
466
}'

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
  • timestamp
    required, string

    The date/time that the bundle was assembled - i.e. when the resources were placed in the bundle.

  • entry
    required, Array of ClaimResponse, Patient, Coverage, Organization, PractitionerRole, Practitioner, RelatedPerson, Claim or Other

    An array of FHIR resources including the following:

    • ClaimResponse - the primary response resource
    • Patient - the patient the claim response is about
    • 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.
    • Coverage - the patient's insurance

    The ClaimResponse is the only resource that must be present in the bundle. It references several other of the above resources which should already be known to the requesting system.

    However, some workflows may not always persist the information, so it is best practice for the responding system to preserve and re-include all referenced resources in the Claim Response bundle.

      An entry in a bundle resource - will either contain a resource or information about a resource (transactions and history only).

    • resource
      required, object

      This resource provides the adjudication details from the processing of a Claim resource.

      • resourceType
        required, string

        Identifies the type of the resource

        Value: ClaimResponse
      • status
        required, string

        The status of the resource instance.

        Value: active
      • type
        required, object

        Type of claim. Example Codes

        For prescriptions, typically code='pharmacy' and system='http://terminology.hl7.org/CodeSystem/claim-type'

        • 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: preauthorization
      • patient
        required, object

        The party to whom the professional services and/or products have been supplied or are being considered and for whom actual for facast 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.

      • insurer
        required, object

        The party responsible for authorization, adjudication and reimbursement.

        Must be a resource of type Organization.

        • reference
          string

          A reference to an Organization resource

      • outcome
        required, string

        The outcome of the claim, predetermination, or preauthoirization processing.

        queued | complete | error | partial

        Possible Values: queued, complete, error, partial
      • requestor
        object

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

        Must be a resource of type Organization.

        • reference
          string

          A reference to an Organization resource

      • request
        object

        A reference to the Claim resource triggering adjudication. This can be either the same identifier as the original Claim.identifier or else reference can point to the Claim.id value. When sending only the reference, it is helpful to also include the original Claim resource in the request.

        Must be a resource of type Claim.

        • 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.

        • identifier
          object

          An identifier for the target resource. This is used when there is no way to reference the other resource directly, either because the entity it represents is not available through a FHIR server, or because there is no way for the author of the resource to convert a known identifier to an actual location. There is no requirement that a Reference.identifier point to something that is actually exposed as a FHIR instance, but it SHALL point to a business concept that would be expected to be exposed as a FHIR instance, and that instance would need to be of a FHIR resource type allowed by the reference.

          • extension
            Array of Boolean, String, CodeableConcept, Coding, HumanName or Reference

            May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension.

            • url
              required, string

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

            • valueBoolean
              boolean

              A single value for the extension.

          • use
            string

            The purpose of this identifier.

            Possible Values: usual, official, temp, secondary, old (If known)
          • system
            string

            Establishes the namespace for the value - that is, a URL that describes a set values that are unique.

          • value
            string

            The portion of the identifier typically relevant to the user and which is unique within the context of the system.

      • item
        Array of object

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

        • itemSequence
          required, number

          A number to uniquely reference the claim item entries.

        • adjudication
          required, Array of object

          If this item is a group then the values here are a summary of the adjudication of the detail items. If this item is a simple product or service then this is the result of the adjudication of this item.

          • category
            required, object

            Type of adjudication information. Example Codes

            • coding
              required, Array of object

              A reference to a code defined by a terminology system.

              • system
                required, string

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

                Value: http://terminology.hl7.org/CodeSystem/adjudication
              • code
                required, 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).

                Value: submitted
            • 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.

          • extension
            Array of reviewAction or Other

            An Extension

              The details of the review action that is necessary for the authorization.

              See http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-reviewAction 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/us/davinci-pas/StructureDefinition/extension-reviewAction
            • extension
              Array of code, number or Other

              Details of the review action that is necessary for the authorization, carried in sub-extension properties.

                The code describing the result of the review.

                See http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-reviewActionCode 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/us/davinci-pas/StructureDefinition/extension-reviewActionCode
              • valueCodeableConcept
                object

                Code indicating the type of action, from the X12 306 code set.

                • 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.

          • amount
            object

            Monetary amount associated with the category.

            • value
              number

              Numerical value (with implicit precision).

            • currency
              string

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

          • value
            number

            Non-monetary value. Used, for example, when the adjudication is a percentage.

        • extension
          Array of itemTraceNumber, preAuthIssueDate, preAuthPeriod, administrationReferenceNumber, authorizedItemDetail, communicatedDiagnosis or Other

          Additional information about the item

            Uniquely identifies this claim item. (2000F-TRN)

            See http://hl7.org/fhir/us/davinci-pas/StructureDefinition/extension-itemTraceNumber 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/us/davinci-pas/StructureDefinition/extension-itemTraceNumber
          • valueIdentifier
            object

            Uniquely identifies this claim item

            • value
              string

              The portion of the identifier typically relevant to the user and which is unique within the context of the system.

      • processNote
        Array of object

        A note that describes or explains adjudication results in a human readable form.

        • text
          required, string

          The explanation or description associated with the processing.

Response fields and example

Example
json
1
"Operation Response"