CRM Filling Templates

Get a CRM filling template

Returns a single CRM filling template by UUID.

get/crm-filling-templates/{uuid}

Path parameters

uuidstring uuid required

Template UUID

Example:a1b2c3d4-e5f6-7890-abcd-ef1234567890

Template UUID

Response

CRM filling template details

uuidstring uuid required

Template UUID

titlestring required

Template title

status'pending' | 'published' required

Template status. pending means in draft, published means active.

languagestring required

Language code (BCP 47)

callDurationMininteger nullable required

Minimum call duration filter (seconds)

callDurationMaxinteger nullable required

Maximum call duration filter (seconds)

providersstring[] required

List of call providers this template applies to

teamIdsinteger[] required

IDs of teams this template is assigned to

tagIdsinteger[] required

IDs of tags this template is filtered by

createdOnstring nullable required

Creation timestamp (ISO 8601)

modifiedOnstring nullable required

Last modification timestamp (ISO 8601)

Example response

{
  "uuid": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "title": "Post-call CRM update",
  "status": "published",
  "language": "en-US",
  "callDurationMin": 60,
  "callDurationMax": 3600,
  "providers": [
    "aircall",
    "hubspot"
  ],
  "teamIds": [
    1,
    2
  ],
  "tagIds": [
    10,
    20
  ],
  "createdOn": "2024-06-15T14:30:00.000Z",
  "modifiedOn": "2024-06-15T15:00:00.000Z"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.