Parse Eligibility and Benefit Verification (EBV) Response Action

Parses the Call 2 (isPriorAuthRequired) JSON response from the eligibility and benefits clearinghouse and extracts the taskId to use for callback correlation.

This action is categorized under Health Cloud and is used to process the response from the second call in the eligibility and benefits verification process, specifically extracting the correlation ID for asynchronous callbacks.

Supported REST HTTP Methods

URI
/services/data/v67.0/actions/standard/parseEbvResponse
Formats
JSON, XML
HTTP Methods
POST
Authentication
Authorization: Bearer token

Inputs

Input Details
httpStatusCode
Type
Integer
Description
The HTTP status code from the callout. Non-2xx codes are treated as failures. Defaults to 200 if not provided.
responseBody
Type
String
Description
Required
The raw JSON response body from the Call 2 (isPriorAuthRequired) clearinghouse callout.

Outputs

Output Details
taskId
Type
String
Description
The Infinitus task UUID that's extracted from the response and used for callback correlation.

Example

Sample Request

1{
2        "inputs": [
3        {
4        "responseBody": "{\"taskId\": \"550e8400-e29b-41d4-a716-44665544xx00\", \"status\": \"processing\"}",
5        "httpStatusCode": 200
6        }
7        ]
8        }

Sample Response

1[
2        {
3        "taskId": "550e8400-e29b-41d4-a716-44665544xx00"
4        }
5        ]