Integrations API [deprecated] (1.0.0)

Download OpenAPI specification:Download

Welcome to the Dixa integrations API. Remember to set your credentials using the 'Authorize' button. Note that this API is deprecated and equivalent functionality can be found in Dixa API.

ActivityLog

Get a list of activitylog eventsDeprecated

SecurityApiKeyAuth or BearerAuth
Request
query Parameters
csids
Array of integers

a list of conversation ids associated with events

Responses
200

A list of activitylog events

get/v1/conversations/activitylog
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "id": "string",
      • "conversation_id": 0,
      • "activity_timestmap": "2015-11-30T00:00:00:000Z",
      • "activity_type": "tag_added",
      • "author": {
        • "id": "string",
        • "name": "string",
        • "email": "string",
        • "phone_number": "string"
        },
      • "attributes": {
        • "tag_name": "string"
        }
      }
    ],
  • "paging": {
    • "cursors": {
      • "after": "string",
      • "before": "string"
      },
    • "next_page": "string",
    • "prev_page": "string"
    }
}

Get a list of activitylog events for a conversationDeprecated

SecurityApiKeyAuth or BearerAuth
Request
path Parameters
csid
required
integer
Responses
200

A list of activitylog events

get/v1/conversations/{csid}/activitylog
Request samples
Response samples
application/json
{
  • "data": [
    • {
      • "id": "string",
      • "conversation_id": 0,
      • "activity_timestmap": "2015-11-30T00:00:00:000Z",
      • "activity_type": "tag_added",
      • "author": {
        • "id": "string",
        • "name": "string",
        • "email": "string",
        • "phone_number": "string"
        },
      • "attributes": {
        • "tag_name": "string"
        }
      }
    ]
}