Returning.AI
  1. Channels
Returning.AI
  • Returning.AI
    • Auth
      • register
      • verify email
      • login
      • secure auth
    • Server
      • create new server
      • get my servers
      • update server
      • role list of server
      • channel list of server
    • Role
      • create new role
      • update role
      • delete role
      • add role to a user on a server
      • remove role from a user on a server
      • get role list of user on a server
    • Channel
      • get channels list
      • create new channel
      • update channel
      • delete channel
    • Badge
      • get badges list
      • create new badge
      • update badge
      • delete badge
      • award badge to user
      • remove badge from user
    • Integration
      • users
        • create new user
      • Messages
        • Send Message
        • Reply Message
      • Channels
        • Get Channels List
          GET
  1. Channels

Get Channels List

GET
https://sgtr-integration.returning.ai/apis/v1/channels

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params
Authorization
string 
optional

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 GET 'https://sgtr-integration.returning.ai/apis/v1/channels' \
--header 'Authorization;'

Responses

🟢200Success
application/json
Body
status
string 
required
status
message
string 
required
data
array [object {3}] 
required
_id
string 
required
topic
string 
required
channelType
string 
required
Example
{
    "status": "string",
    "message": "string",
    "data": [
        {
            "_id": "string",
            "topic": "string",
            "channelType": "string"
        }
    ]
}
Previous
Reply Message