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 |
|
| responseBody |
|
Outputs
| Output | Details |
|---|---|
| taskId |
|
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 ]