Skip to main content

List of all integrations

This endpoint retrieves all your integrations.

Request

GET https://api.nicereply.com/integrations

By default, list of integrations is sorted by created_at.

Query Parameters

Pagination is supported.

ParameterRequiredDefaultDescription
sort_orderNodescValid values is: asc or desc.

Example response

200 OK
{
"data": [
{
"id": "ba4a4f84-05a7-4bed-a389-debcfa037dde",
"name": "Live Agent",
"type": "liveagent-v2",
"created_at": "2023-06-07T09:38:44+02:00",
"updated_at": "2023-06-16T08:18:39+02:00"
},
{
"id": "3ffde3ea-cbab-4264-8e02-3afd9bf2a694",
"name": "Aircall",
"type": "aircall",
"created_at": "2023-05-22T15:22:55+02:00",
"updated_at": "2023-05-22T15:23:00+02:00"
}
// ...
],
"pagination": {
"total": 30,
"count": 10,
"per_page": 10,
"current_page": 1,
"total_pages": 3,
"links": {
"next": "/integrations?page=2",
"prev": null
}
}
}