GET
/
v1
/
calls
curl --request GET \
  --url https://api.eu.volubile.ai/v1/calls \
  --header 'X-Api-Key: <api-key>'
{
  "content": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "agentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "phone": "+33612345678",
      "type": "INBOUND",
      "duration": 360,
      "startTime": "2024-07-30T14:35:00Z",
      "endTime": "2024-07-30T14:41:00Z",
      "anonymous": true,
      "status": "IN_PROGRESS",
      "extractors": [
        {
          "name": "customer",
          "value": [
            {
              "name": "firstname",
              "value": [
                "John"
              ]
            },
            {
              "name": "lastname",
              "value": [
                "Doe"
              ]
            },
            {
              "name": "address",
              "value": [
                "123 Main St"
              ]
            }
          ]
        },
        {
          "name": "example",
          "value": [
            "example1"
          ]
        }
      ],
      "extractedData": {
        "customer": {
          "firstname": "John",
          "lastname": "Doe",
          "address": "123 Main St"
        },
        "example": "example1"
      },
      "classifiers": [
        {
          "name": "Customer's request",
          "value": "Refund",
          "type": "PRIMARY"
        },
        {
          "name": "Sentiment",
          "value": "Positive",
          "type": "SECONDARY"
        }
      ],
      "classificationData": {
        "Customer's request": "Refund",
        "Sentiment": "Positive"
      },
      "context": {
        "firstName": "firstname",
        "lastName": "lastname",
        "orderNumber": "5HZ99FRT",
        "system": {
          "phone": "+33612345678"
        }
      },
      "recorded": true,
      "summary": "Discussed project requirements and next steps.",
      "created": "2024-07-30T14:45:00Z"
    }
  ],
  "size": 123,
  "page": 123,
  "totalElements": 123,
  "totalPages": 123
}

Authorizations

X-Api-Key
string
header
required

Your API key.

Query Parameters

agentId
string

Filter by agent id

phone
string

Filter by phone number, in the E.164 international standard format

Example:

"+33612345678"

campaignName
string

Filter by campaign name

from
string

Filter by date, inclusive lower bound. Requires 'to' to not be null.

Format: YYYY-MM-DD

Example:

"2024-08-01"

to
string

Filter by date, inclusive upper bound. Requires 'from' to not be null.

Format: YYYY-MM-DD

Example:

"2024-08-31"

page
string
default:1

The page number to be returned, starts at 1

size
string
default:25

The number of items to be returned, maximum 100

sort
enum<string>

The sort property and direction

Available options:
<property>,ASC,
<property>,DESC
Example:

"property,DESC"

Response

200
application/json
OK

The response is of type object.