Add webhook
Subscribe to Prior Auth outpatient workstream case updates via webhook.
The case update events will be POSTed to the provided URL.
Anterior's POST request to your URL will contain a JSON body in the format:
```json
{
"caseUid": "string",
"status": "SCHEDULED|PENDING|COMPLETED|ERROR"
}
```
- `PENDING` - The case has been created or updated.
- `SCHEDULED` - The case has been scheduled for determination.
- `RUNNING` - The case is being determined by Florence.
- `COMPLETED` - Florence has reached determinations on the case.
- `ERROR` - There was an error during case determination.
Full case details can be fetched from the **Get case** endpoint.
Authentication
X-API-Keystring
API Key authentication via header
Request
This endpoint expects an object.
callbackUrl
Anterior will post case updates to this URL.

