The Authorisation APIs bundle exposes APIs to enable membership enquiry.

Getting started

General aspects of integrating with Healthcode APIs, like authentication and authorisation, naming conventions, data formatting assumptions, error handling requirements, etc. are documented here.

Pay special attention to the aspects of using discovery document, the need to specify site id within the request headers, and the need to specify exact API version.

Also, be certain you are connecting to the correct environment. If you are trying to integrate into our sandbox (UAT) environment, read instructions here first to understand the requirements.

Coverage

The Coverage resource is used to provide information about the membership details of a patient for a particular insurer. Following APIs enable operating against the resource.

Find Member

The Find Member API enables searching for membership details using different filter criteria.

Endpoint

Must be looked up from the discovery document using key find_member_endpoint.

Request

Please note, this API uses HTTP POST method and accepts url-encoded key value pairs in request body. A sample POST request for this API is provided below. The insurerIdentifier is a mandatory parameter and depending upon the insurer all other parameters can be mandatory or optional which is documented here.

curl --request POST 
	--url '{find_member_endpoint}'?
	--header 'SU-SiteId: HC12393' 
	--header 'Content-Type: application/x-www-form-urlencoded' 
	--header 'Authorization: Bearer abCdE12...89mNopq0r' 
	--data-urlencode 'insurerIdentifier=bup'
	--data-urlencode 'firstName=S' 
	--data-urlencode 'lastName=Gray' 
	--data-urlencode 'sex=Male' 
	--data-urlencode 'dateOfbirth=1998-08-08' 
	--data-urlencode 'postCode=BT43%207BU' 
	--data-urlencode 'membershipNumber=002WMQ'
	--data-urlencode 'groupId=015T6W'
	--data-urlencode 'policyActiveOn=2023-09-25'

Where,

FieldTypeDescription
insurerIdentifierStringInsurer’s identifier. Following are the supported insurers and its identifiers:
Bupa = bup
AXA Health = ppp
Aviva = nuh
Vitality Health = slh
Cigna Healthcare = cig
Trust in Health = tih
firstInitialStringMember’s first initial
lastNameStringMember’s last name
sexStringMember’s gender
dateOfBirthStringMember’s date of birth
postCodeStringMember’s postal code
membershipNumberStringInsurers unique identifier for the member
groupIdStringIdentifier for this member’s policy, where the member is part of a group policy
policyActiveOnStringDate to check if policy is active or not

Response

The API returns a Coverage resource if a single match is found. In case of no match or multiple matches the API will return OperationOutcome resource.

{
    "resourceType": "Coverage",
    "id": "101",
    "contained": [
        {
            "resourceType": "Patient",
            "id": "1",
            "extension": [
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/otherInitials",
                    "valueString": "P"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/genderIdentity",
                    "valueString": "male"
                }
            ],
            "name": [
                {
                    "family": "Gray",
                    "given": [
                        "Stuart"
                    ]
                }
            ],
            "gender": "male",
            "birthDate": "1998-08-08",
            "address": [
                {
                    "line": [
                        "Flat 1 Lazenbys Restaurant"
                    ],
                    "city": "Sandy Way",
                    "district": "CAMBRIDGE",
                    "state": "Greater Manchester",
                    "postalCode": "BT43 7BU",
                    "country": "GB"
                }
            ]
        },
        {
            "resourceType": "Organization",
            "id": "2",
            "name": "Bupa",
            "telecom": [
                {
                    "system": "email",
                    "value": "bupa@support.com"
                },
                {
                    "system": "phone",
                    "value": "447488803755"
                }
            ]
        }
    ],
    "extension": [
        {
            "url": "https://ref.api.healthcode.co.uk/extension/doNotReject",
            "valueString": "No"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/currency",
            "valueString": "GBP"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/memberCoPayment",
            "valueMoney": {
                "value": 50
            }
        },
        {
            "url": "https://ref.api.healthcode.co.uk/insuranceSchemePlan",
            "valueString": "Key"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/policyExpired",
            "valueString": "Yes"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/expiryDate",
            "valueDateTime": "2022-01-01T00:00:00+05:30"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/groupId",
            "valueString": "015T6W"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/benefitLimit",
            "valueMoney": {
                "value": 1000
            }
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/benefitUsed",
            "valueMoney": {
                "value": 250
            }
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/benefitUsedAsOf",
            "valueDateTime": "2023-08-03T00:00:00+05:30"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/memberExcess",
            "valueMoney": {
                "value": 100
            }
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/excessUsed",
            "valueMoney": {
                "value": 50
            }
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/excessUsedAsOf",
            "valueDateTime": "2023-08-03T00:00:00+05:30"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/memberExcessType",
            "valueString": "Each Claim/Episode"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/memberCoPaymentType",
            "valueString": "Monetary Value"
        }
    ],
    "identifier": [
        {
            "id": "membershipNumber",
            "value": "002WMQ"
        }
    ],
    "beneficiary": {
        "reference": "#1"
    },
    "period": {
        "start": "2023-08-01T00:00:00+05:30",
        "end": "2023-12-03T00:00:00+05:30"
    },
    "payor": [
        {
            "reference": "#2"
        }
    ]
}

Where,

NameTypeCard.DescriptionFHIR Field
Coverage IDId1-1Coverage IDCoverage.id
Given NameString1-1Member’s given or first nameCoverage.contained.Patient.name.given
Family NameString1-1Member’s family or last nameCoverage.contained.Patient.name.family
GenderCode1-1Member’s sex at birthCoverage.contained.Patient.gender
Birth DateDate1-1Member’s date of birthCoverage.contained.Patient.birthDate
AddressAddress1-1Member’s address which contains line, city, district, state, postalCode and country fieldsCoverage.contained.Patient.address
Gender IdentityString0-1The gender by which the member prefers to be identifiedCoverage.contained.Patient.extension.valueString – genderIdentity
Other InitialsString0-1Member’s other initialsCoverage.contained.Patient.extension.valueString – otherInitials
Insurer NameString1-1Insurer’s nameCoverage.contained.Organization.name
EmailContactPoint0-1Insurer’s emailCoverage.contained.Organization.telecom.email
PhoneContactPoint0-1Insurer’s phone numberCoverage.contained.Organization.telecom.phone
Insurer IdentifierIdentifier1-1Insurer’s unique identifier for this memberCoverage.identifier
StartDateTime1-1The date on which the cover for this member startsCoverage.period.start
EndDateTime1-1The date on which the cover for this member endsCoverage.period.end
Group IDString0-1Identifier for this member’s policy, where the member is part of a group policyCoverage.extension.valueString – groupId
Policy ExpiredString1-1Indicates policy expiry status. Expected value is either ‘Yes’ or ‘No’Coverage.extension.valueString – policyExpired
Expiry DateDate0-1The date on which cover expiredCoverage.extension.valueDate – expiryDate
Cover TypeString0-1Policy scheme to which group/member belongsCoverage.extension.valueString – coverType
Benefit LimitMoney0-1The maximum benefit available to the member on this policyCoverage.extension.valueMoney – benefitLimit
Benefit UsedMoney0-1The amount of benefit already used by this member on this policyCoverage.extension.valueMoney – benefitUsed
Benefit Used As OfDateTime0-1The date/time on which the consumed benefit amount was calculatedCoverage.extension.valueDateTime – benefitUsedAsOf
Member ExcessMoney0-1The excess amount to be paid by the member on this policyCoverage.extension.valueMoney – memberExcess
Member Excess TypeString0-1The period over which the excess amount is applicable. Expected value is either ‘Policy period’ or ‘Each Claim/Episode’Coverage.extension.valueString – memberExcessType
Excess UsedMoney0-1The excess amount already paid by the member on this policyCoverage.extension.valueMoney – excessUsed
Excess Used As OfDateTime0-1The date/time on which the paid excess was calculatedCoverage.extension.valueDateTime – excessUsedAsOf
Member CoPaymentMoney or Decimal0-1The amount to be paid by the member under any policy co-payment arrangement. This will return valueMoney object if value is supplied as ‘Monetary value’ by insurer or it will return valueDecimal object if the value is supplied as ‘Percentage’ by insurerCoverage.extension.valueMoney – memberCoPayment
OR
Coverage.extension.valueDecimal – memberCoPayment
Member CoPayment TypeString0-1The type in which the copayment value is supplied by insurer. Expected value is either ‘Monetary value’ or ‘Percentage’Coverage.extension.valueString – memberCoPaymentType
CurrencyString0-1Currency code for the monetary valuesCoverage.extension.valueString – currency

Error handling

HTTP CodeError CodeDescription
400NO_MATCH_FOUNDNo match found for search parameter
400MULTIPLE_MATCH_FOUNDMultiple match found for search parameters
400MSG_MISSING_MANDATORY_PARAMMissing mandatory parameter
422MSG_PARAM_INVALIDParameter content is invalid
400MSG_CANT_PARSE_CONTENTUnprocessable Entity
500MSG_DATABASE_ERRORFailed processing entity in Database

Please note that the HTTP Code 400 for NO_MATCH_FOUND and MULTIPLE_MATCH_FOUND is a deviation from the empty resultset as specified here within general-overview part of API Docs, but is intentional to keep the handling consistent between NO_MATCH_FOUND and MULTIPLE_MATCH_FOUND.

PreAuth

PreAuth is defined by a Claim FHIR resource that contains Pre-Authorisation details. ‘preauthorization‘ will be used within the Claim resource ‘use’ field to indicate it is a Pre-Authorisation resource. The following APIs enable operating against this resource.

Search Authorisation API

The Search Authorisation API enables the caller to retrieve a list of authorisations based on search criteria.

Endpoint

Must be looked up from the discovery document using key search_authorisation_endpoint.

Request

curl --request POST 
	--url '{search_authorisation_endpoint}'?
	--header 'SU-SiteId: HC12393' 
	--header 'Content-Type: application/x-www-form-urlencoded' 
	--header 'Authorization: Bearer abCdE12...89mNopq0r' 
	--data-urlencode 'insurerIdentifier=tih'
	--data-urlencode 'issueDate=2024-05-05&' 
	--data-urlencode 'caseId=NWPY1NYDGF8U8HVNQROFC6JAO' 
	--data-urlencode 'authCode=QEGGQE91C4' 
	--data-urlencode 'status=read' 
	--data-urlencode 'membershipNumber=002WMQ'
	--data-urlencode '_sort=issueDate' 
	--data-urlencode '_since=2024-03-01T09:00:00'
	--data-urlencode 'page=1'
	--data-urlencode 'count=10' 

Where,

FieldTypeMandatory/ OptionalDescription
insurerIdentifierStringOInsurer’s identifier. The following are supported insurers and identifiers:
Aviva = nuh
Vitality Health = slh
Trust in Health = tih
issueDateStringOAuthorisation issue date
caseIdStringOAuthorisation Case ID
authCodeStringOAuthorisation code
statusStringORead/Unread status for an authorisation record
membershipNumberStringOInsurers unique identifier for the member
_sortStringOSort results by issue date. Use _sort=issueDate to sort results on issue date in ascending order, or _sort=-issueDate for descending order
_sinceStringOLast updated date time of records
pageStringOPage index to be fetched {1,2,3..}
countStringOMaximum records in a page

Response

The API returns a Bundle of Claim resources based on the search filters.

{
  "resourceType": "Bundle",
  "meta": {
    "tag": [
      {
        "code": "page",
        "display": "1"
      },
      {
        "code": "count",
        "display": "10"
      },
      {
        "code": "maxCount",
        "display": "1"
      }
    ]
  },
  "type": "collection",
  "total": 1,
  "entry": [
    {
      "resource": {
        "resourceType": "Claim",
        "id": "Q8I7UU181Z4PZCCIN80N538OR",
        "extension": [
          {
            "url": "https://ref.api.healthcode.co.uk/extension/authCode",
            "valueString": "QEGGQE91C4"
          },
          {
            "url": "https://ref.api.healthcode.co.uk/extension/lastUpdatedOn",
            "valueDateTime": "2024-05-05T00:40:00+00:00"
          },
          {
            "url": "https://ref.api.healthcode.co.uk/extension/insurerIdentifier",
            "valueString": "tih"
          },
          {
            "url": "https://ref.api.healthcode.co.uk/extension/isRead",
            "valueBoolean": true
          }
        ],
        "identifier": [
          {
            "system": "https://ref.api.healthcode.co.uk/caseId",
            "value": "NWPY1NYDGF8U8HVNQROFC6JAO"
          },
          {
            "system": "https://ref.api.healthcode.co.uk/membershipNumber",
            "value": "FG176A1"
          }
        ],
        "use": "preauthorization",
        "diagnosis": [
          {
            "type": [
              {
                "coding": [
                  {
                    "system": "https://ref.api.healthcode.co.uk/diagnosis/ICD9",
                    "code": "03700",
                    "display": "TETANUS"
                  }
                ]
              }
            ]
          }
        ]
      }
    }
  ]
}

Where,

NameTypeCard.DescriptionFHIR Field
IdId1-1Authorisation IDClaim.id
UseCode1-1Code to indicate an authorisation resourceClaim.use
Case IDString0-1Authorisation Case IDClaim.identifier.value – caseId
Membership NumberString1-1Insurer’s unique identifier for this memberClaim.identifier.value – membershipNumber
DiagnosisCodeableConcept1-1The condition for which the treatment(s) are being provided and response includes diagnosis scheme, code and nameClaim.diagnosis.type.coding
Auth CodeString1-1Authorisation identifier allocated by the insurerClaim.extension.valueString – authCode
Insurer IdentifierString1-1Insurer identifierClaim.extension.valueString – insurerIdentifier
Is ReadBoolean0-1Read/Unread status for an authorisation recordClaim.extension.valueBoolean – isRead
Last Updated OnDateTime0-1Authorisation last updated date timeClaim.extension.valueDateTime – lastUpdatedOn

Error handling

HTTP CodeError CodeDescription
400MSG_PARAM_EMPTYParameter is null/empty
422MSG_PARAM_INVALIDParameter content is invalid
422MSG_DATE_FORMATInvalid date format
400MSG_CANT_PARSE_CONTENTUnprocessable Entity
500MSG_DATABASE_ERRORFailed processing entity in Database

Get Authorisation API

The Get Authorisation API enables the caller to retrieve authorisation details with a known authorisation ID.

Endpoint

Must be looked up from the discovery document using key get_authorisation_endpoint.

Request

curl --request POST 
	--url '{get_authorisation_endpoint}/{authorisationId}'?
	--header 'SU-SiteId: HC12393' 
	--header 'Content-Type: application/fhir+json' 
	--header 'Authorization: Bearer abCdE12...89mNopq0r'

Where,

FieldTypeMandatory/ OptionalDescription
authorisationIdStringMAuthorisation’s ID. This can be retrieved from the Search Authorisation API

Response

The API returns a Claim resource which contains the required authorisation details.

{
    "resourceType": "Claim",
    "id": "20220603abc00000000000001",
    "contained": [
        {
            "resourceType": "Coverage",
            "contained": [
                {
                    "resourceType": "Organization",
                    "id": "PR00006D",
                    "identifier": [
                        {
                            "system": "https://ref.api.healthcode.co.uk/insurer-identifier",
                            "value": "slh"
                        }
                    ],
                    "name": "Vitality Health",
                    "telecom": [
                        {
                            "system": "email",
                            "value": "helpline@vitality.co.uk"
                        },
                        {
                            "system": "phone",
                            "value": "0800 092 9400"
                        }
                    ]
                },
                {
                    "resourceType": "Patient",
                    "name": [
                        {
                            "family": "Henry",
                            "given": [
                                "watson"
                            ],
                            "prefix": [
                                "Mr"
                            ]
                        }
                    ],
                    "gender": "male",
                    "birthDate": "1988-08-08",
                    "address": [
                        {
                            "line": [
                                "4 THE VALE"
                            ],
                            "city": "MYATTS FIELDS SOUTH",
                            "district": "GODALMING",
                            "state": "GODALMING",
                            "postalCode": "E1 2PW",
                            "country": "UK"
                        }
                    ]
                }
            ],
            "extension": [
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/groupPolicyId",
                    "valueString": "1244942114"
                }
            ],
            "period": {
                "start": "2024-01-01T00:00:00+00:00",
                "end": "2025-01-01T00:00:00+00:00"
            }
        }
    ],
    "extension": [
        {
            "url": "https://ref.api.healthcode.co.uk/extension/status",
            "valueString": "ACTIVE"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/package",
            "valueString": "Yes"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/claimNumber",
            "valueString": "4354RE35VR"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/issueDate",
            "valueDateTime": "2024-05-05T00:00:00+00:00"
        },
        {
            "url": "https://ref.api.healthcode.co.uk/extension/authCode",
            "valueString": "THPAR3PNHC"
        }
    ],
    "identifier": [
        {
            "system": "https://ref.api.healthcode.co.uk/caseid",
            "value": "0000050f5d144760a5072d3ac"
        },
        {
            "system": "https://ref.api.healthcode.co.uk/membershipNumber",
            "value": "30001192"
        }
    ],
	"use": "preauthorization",
    "item": [
        {
            "extension": [
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/decision",
                    "valueString": "APPROVED"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/episodeSetting",
                    "valueString": "Inpatient"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/authorisedFrom",
                    "valueDateTime": "2024-05-05T00:00:00+00:00"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/authorisedTo",
                    "valueDateTime": "2024-05-06T00:00:00+00:00"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/firstDateOfService",
                    "valueDateTime": "2024-05-05T00:00:00+00:00"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/lastDateOfService",
                    "valueDateTime": "2024-05-06T00:00:00+00:00"
                },
                {
                    "url": "https://ref.api.healthcode.co.uk/extension/inpatientNights",
                    "valueString": "1"
                },
                {
                    "valueCodeableConcept": {
                        "coding": [
                            {
                                "system": "https://ref.api.healthcode.co.uk/extension/industryStandardCode/ISC",
                                "code": "E0002960",
                                "display": "Physiotherapy, Knee Clinic"
                            }
                        ]
                    }
                },
                {
                    "valueCodeableConcept": {
                        "coding": [
                            {
                                "extension": [
                                    {
                                        "url": "https://ref.api.healthcode.co.uk/extension/decision",
                                        "valueString": "APPROVED"
                                    },
                                    {
                                        "url": "https://ref.api.healthcode.co.uk/extension/insurerProviderCode",
                                        "valueString": "10000756"
                                    }
                                ],
                                "system": "https://ref.api.healthcode.co.uk/Location",
                                "code": "HP000021",
                                "display": "Markers Lane"
                            }
                        ]
                    }
                },
                {
                    "valueCodeableConcept": {
                        "coding": [
                            {
                                "extension": [
                                    {
                                        "url": "https://ref.api.healthcode.co.uk/extension/decision",
                                        "valueString": "APPROVED"
                                    },
                                    {
                                        "url": "https://ref.api.healthcode.co.uk/extension/insurerProviderCode",
                                        "valueString": "10000756"
                                    }
                                ],
                                "system": "https://ref.api.healthcode.co.uk/Practitioner",
                                "code": "SP003516",
                                "display": "Doctor Aeron G Davies"
                            }
                        ]
                    }
                }
            ]
        },
        {
            "extension": [
                {
                    "valueCodeableConcept": {
                        "coding": [
                            {
                                "extension": [
                                    {
                                        "url": "https://ref.api.healthcode.co.uk/extension/createdOn",
                                        "valueDateTime": "2024-01-18T11:55:55+00:00"
                                    }
                                ],
                                "system": "https://ref.api.healthcode.co.uk/note",
                                "display": "Participation in sports and recreational activities are risk factors for knee injury."
                            }
                        ]
                    }
                }
            ]
        }
    ]
}

Where,

NameTypeCard.DescriptionFHIR Field
IdId1-1Authorisation IDClaim.id
UseCode1-1Code to indicate an authorisation resourceClaim.use
Case IDString0-1Authorisation Case IDClaim.identifier.value – caseId
Membership NumberString1-1Insurer’s unique identifier for this memberClaim.identifier.value – membershipNumber
DiagnosisCodeableConcept1-1The condition for which the treatment(s) are being provided and response includes diagnosis scheme, code and nameClaim.diagnosis.type.coding
Auth CodeString1-1Authorisation identifier allocated by the insurerClaim.extension.valueString – authCode
StatusString1-1Indicates authorisation statusClaim.extension.valueString – status
PackageString0-1Indicates weather authorisation includes a packaged treatmentClaim.extension.valueString – package
Claim NumberString0-1Claim numberClaim.extension.valueString – claimNumber
Issue DateDateTime1-1The date on which the authorisation was issuedClaim.extension.valueString – issueDate
Industry Standard CodeCodeableConcept1-1The actual service for which the authorisation belongs to and response includes industry standard scheme, code and nameClaim.item.extension.valueCodeableConcept.coding
Episode SettingString1-1The episode setting of a given service. Expected values are Inpatient, Outpatient, DaycaseClaim.item.extension.valueString – episodeSetting
DecisionString1-1The decision for a given service. Expected values are Approved, Declined, PendingClaim.item.extension.valueString – decision
Authorised FromDateTime1-1The start date for which authorisation of the given service is valid Claim.item.extension.valueDateTime – authorisedFrom
Authorised ToDateTime1-1The end date for which authorisation of the given service is validClaim.item.extension.valueDateTime – authorisedTo
First Date of ServiceDateTime0-1The start date of actual treatmentClaim.item.extension.valueDateTime – firstDateOfService
Last Date of ServiceDateTime0-1The end date of actual treatmentClaim.item.extension.valueDateTime – lastDateOfService
Inpatient NightsInteger0-1Number of inpatient nights. This value will be available only if episode setting is set to inpatientClaim.item.extension.valueInteger – inpatientNights
LocationCodeableConcept1-*The location or treatment site where the service may be provided and response includes HP number and name of the locationClaim.item.extension.valueCodeableconcept.coding
DecisionString1-1The decision for a given location. Expected values are Approved, Declined, PendingClaim.item.extension.valueCodeableconcept.coding.extension.valueString – decision
Insurer Provider CodeString1-1The insurer provider code for the given location
Claim.item.extension.valueCodeableconcept.coding.extension.valueString – insurerProviderCode
PractitionerCodeableConcept1-*The practitioner or specialist authorised to carry out the treatment and response includes SP number and name of the practitionerClaim.item.extension.valueCodeableconcept.coding
DecisionString1-1The decision for a given practitioner. Expected values are Approved, Declined, Pending
Claim.item.extension.valueCodeableconcept.coding.extension.valueString – decision
Insurer Provider CodeString1-1The insurer provider code for the given practitionerClaim.item.extension.valueCodeableconcept.coding.extension.valueString – insurerProviderCode
ProcedureCodeableConcept0-*The procedure code is expected to be carried out as part of the service and response includes procedure scheme, code and nameClaim.item.extension.valueCodeableconcept.coding
DecisionString1-1The decision for a given procedure. Expected values are Approved, Declined, PendingClaim.item.extension.valueCodeableconcept.coding.extension.valueString – decision
NoteCodeableConcept0-*The notes related to the authorisationClaim.item.extension.valueCodeableconcept.coding
Created OnDateTime1-1The date on which the note was added
Claim.item.extension.valueCodeableconcept.coding.extension.valueDateTime
InsurerResource1-1This resource includes insurer’s id, identifier and name related to the given authorisationClaim.contained.Coverage.contained.Organization
MemberResource1-1This resource includes member details like name, gender, data of birth and addressClaim.contained.Coverage.contained.Patient

Error handling

HTTP CodeError CodeDescription
400MSG_PARAM_EMPTYParameter is null/empty
422MSG_PARAM_INVALIDParameter content is invalid
400MSG_MISSING_MANDATORY_PARAMMissing mandatory parameter
400INVALID_RESOURCEUnprocessable Entity
500MSG_DATABASE_ERRORFailed processing entity in Database