Skip to main content
GET
/
v1
/
core
/
entities
/
extractions
/
{recordingId}
Get entity extractions for a recording
curl --request GET \
  --url https://siro-gateway-867voja4.uc.gateway.dev/v1/core/entities/extractions/{recordingId} \
  --header 'x-siro-auth-token: <api-key>'
{
  "data": [
    {
      "id": "extraction_001",
      "recordingId": "recording_001",
      "siroEntityDefinitionId": "siro_entity_definition_001",
      "siroEntityDefinitionDeleted": false,
      "status": "SUCCESS",
      "extraction": [
        {
          "name": "Objection Reason",
          "value": "Financial Concerns",
          "mappings": [
            {
              "crmModelName": "Opportunity",
              "crmFieldName": "Objection_Reason__c"
            }
          ]
        }
      ],
      "createdAt": "2021-01-01T00:00:00Z",
      "updatedAt": "2021-01-01T00:00:00Z",
      "mappings": [
        {
          "crmModelName": "Opportunity",
          "crmFieldName": "Next_Steps__c"
        }
      ],
      "siroEntityDefinitionName": "Objection Reason"
    }
  ],
  "cursor": "<string>",
  "pageSize": 123,
  "limit": 123,
  "total": 123,
  "hasNextPage": true
}

Authorizations

x-siro-auth-token
string
header
required

Custom authentication token for user-scoped endpoints

Path Parameters

recordingId
string
required

Recording ID to get entity extractions for

Response

Get entity extractions for a recording

data
object[]
required
cursor
pageSize
number
limit
number
total
number | null
hasNextPage
boolean