Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
83 lines (64 loc) · 2.19 KB

File metadata and controls

83 lines (64 loc) · 2.19 KB

Get an SLA

Get details of a specific SLA policy.

HTTP MethodURLRequires Auth
GET/api/v1/livechat/sla/:slaIdyes

{% hint style="info" %} You are required to have the manage-livechat-sla or view-l-room permission. {% endhint %}

Path Parameters

KeyExample ValueDescription
slaId*641daf3d7718f90c810429c8The ID of the SLA.

Example Call

{% code overflow="wrap" %}

curl --location 'http://localhost:3000/api/v1/livechat/sla/641daf3d7718f90c810429c8' \
--header 'X-Auth-Token: q2zjkgQt_OmYaBY4nEp50-r7yUAqVIoAqgo0jjBIws5' \
--header 'X-User-Id: rYhzFRd2QZjNwAAXX'

{% endcode %}

Example Response

Success

{
    "_id": "641daf3d7718f90c810429c8",
    "name": "Minimal",
    "description": "2m UI creat",
    "dueTimeInMinutes": 2,
    "_updatedAt": "2023-03-24T14:10:05.063Z",
    "success": true
}

Error

Any of the following errors can occur on the endpoint.

  • Authorization: Requires an authentication token for the request to be made.
  • No Permission: This occurs when the authenticated user doesn't have manage-livechat-sla or view-l-room permission.
  • Not Found: This error gets returned when no SLA is found with the ID provided.

{% tabs %} {% tab title=" Authorization" %}

{
    "status": "error",
    "message": "You must be logged in to do this."
}

{% endtab %}

{% tab title="No Permission" %}

{
    "success": false,
    "error": "error-not-authorized"
}

{% endtab %}

{% tab title="Not Found" %}

{
    "success": false,
    "error": "SLA with id gfgfg56g429c8 not found"
}

{% endtab %} {% endtabs %}

Change Log

Version Description
6.0.0 Added