Disband

POST api/v1/channel/disband

  • Note: It is to dismiss the current group chat. Only the admin has access.

  • Header

FieldTypeRemarks

ApiKey

String

ApiKey acquired from the admin

Authorization

String

Bearer ${unifiedAuthToken} , in which the unifiedAuthToken is returned by /api/v1/auth

  • Request Parameters

FieldTypeRemarks

channelUuid

String

the uuid of the group chat

  • Request Example

curl POST 'https://api.relationlabs.ai/api/v1/channel/disband' \
--header 'ApiKey: <ApiKey>' \
--header 'Authorization: bearer eyJhbGci1OiJFUzI1NiJ9.eyJqdGkiOiI0MzdiN2EzZDEwMGY0ODVkOWVhMWUz1ZmZlOWE1NmEyZSIsImlzcyI6InJlbGF0aW9ubGFicy5haSIsImlhdCI6MTY2NTIxNTUzNSwic3ViIjoiZGhreXEtc3FhYWEtYWFhYWotc2d6M3EtY2FpIiwiZXhwIjoxNjY1ODIwMzM1fQ.rj7KKuIcgmvaIwZ63YHnXQ4jvvI-eR2Wo7k3YE1yzMuxo8j5ezCowKDpcW0u9zIuHPFqwD0-1XPWdPLR1d1HLFw' \
--header 'Content-Type: application/json' \
--data-raw '{
    "channelUuid":"4f326124812c41448bc587bf6b2eaf42"
}'
  • Response Parameters

FieldTypeRemarks

code

String

the Return Code

desc

String

the Return Message

data

Object

the Return Data

  • Response Body

{
    "code": "0",
    "desc": "success",
    "data": null
}
  • Return Code

codedescRemarks

0

success

the flag for a successful request

13107

Not the admin of this channel

Not the admin of this group chat.

Last updated