Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.2 KB

File metadata and controls

37 lines (26 loc) · 1.2 KB

Delete a Unit

HTTP MethodURLRequires Auth
DELETE/api/v1/livechat/units/:idyes

{% hint style="info" %} Permission required: manage-livechat-units {% endhint %}

Path Variables

KeyExample ValueDescription
id*oPK7Z735JdTuMZXmQThe unit ID.

Example Call

{% code overflow="wrap" %}

curl --location --request DELETE 'localhost:3000/api/v1/livechat/units/oPK7Z735JdTuMZXmQ' \
--header 'x-Auth-token: jx-CrbeqbxPimsZr1UAhO3NsJdU8yB0MVoXkGOKQ3xL' \
--header 'x-user-id: 6vHSSqdBHdm2R4gfi'

{% endcode %}

Example Response

{
   "success": true
}

Change Log

Version Description
4.2.0 Added