cURL
curl --request GET \ --url https://api.example.com/v1/core/entities/extractions/{recordingId} \ --header 'Authorization: Bearer <token>'
{ "data": [ { "id": "extraction_001", "recordingId": "recording_001", "extraction": [ { "name": "Objection Reason", "value": "Financial Concerns" } ], "createdAt": "2021-01-01T00:00:00Z", "updatedAt": "2021-01-01T00:00:00Z" } ], "cursor": "<string>", "pageSize": 123, "limit": 123 }
Get entity extractions for a recording
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Recording ID to get entity extractions for
Show child attributes