Async Metadata
Authorization
You must be authorized to purge calls to use these APIs. If you need this permission, submit a request.
To request a bearer token, reference the Authorization Token article.
Async Metadata
You may need to add additional metadata along with your call provider’s metadata to Creovai calls and call groups from an analytics standpoint. For example, a Creovai customer may want to include additional CRM metadata in Creovai App (per call) to match up with call group metadata fields (existing in Creovai) and update all associated calls with new call group metadata.
URL: https://<<INSTANCE NAME>>.audio.tethr.com/capture/v2/outofband/interaction
| Attribute | Type | Description |
|---|---|---|
sessionID | string | The session ID that uniquely identifies a call |
| eventTime | date | The date and time of the async metadata event |
| metadata | JSON object | Your custom metadata |
Response Codes
| Code | Message | Description |
|---|---|---|
| 200 | OK | Request was successful |
| 400 | Bad Request | Request content is invalid |
| 500 | Internal Server Error | An internal server error occurred |
Example
{
"sessionId": "sessionId",
"eventTime": "2026-07-20T09:00:00.000Z",
"metadata": {
"testValue": "This is a test",
"testValue2": 124
}
}
Response
200 OK
