- Returning.AI
- Auth
- User
- Server
- Category
- Role
- Channel
- Language Setting
- Leaderboard
- Badge
- Gamification
- Api Token
- Custom Userfields
- Integration
update channel
Developing
PUT
/channels/{id}
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
id
string
required
Example:
66b1aa4a3ccd3b97df602e2c
Body Params application/json
object {0}
Example
{
"title": "Chit Chat"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PUT 'https://api.returning.ai/api/v1/channels/66b1aa4a3ccd3b97df602e2c' \
--header 'Content-Type: application/json' \
--data-raw '{
"title": "Chit Chat"
}'
Responses
🟢200Success
application/json
Body
meta
object
required
success
boolean
required
message
string
required
devMessage
string
required
body
object
required
_id
string
required
title
string
required
permissions
array[string]
required
userId
string
required
serverId
string
required
channelType
string
required
createdAt
string
required
updatedAt
string
required
__v
integer
required
Example
{
"meta": {
"success": true,
"message": "Channel has been updated successfully",
"devMessage": "Channel has been updated successfully"
},
"body": {
"_id": "66a28249fe1c8797121428c8",
"title": "Report",
"permissions": [],
"userId": "1",
"serverId": "669b462658695ff095d431af",
"channelType": "open",
"createdAt": "2024-07-25T16:50:17.610Z",
"updatedAt": "2024-07-25T16:53:27.739Z",
"__v": 0
}
}
Modified at 2024-08-06 04:45:06