봇 목록 조회

Get Bots

GET https://api.talkplus.io/v1.4/api/bots

봇 목록을 조회합니다.

Query Parameters

Name
Type
Description

lastBotId

string

last bot ID to query from (use for pagination)

Headers

Name
Type
Description

content-type

string

application/json

app-id*

string

App ID

api-key*

string

App API key

{
  "bots": [
    {
      "id": "bot_001",
      "name": "channel_001_bot",
      "profileImageUrl": "http://cnd.test.com/123.jpg",
      "type": "cs",
      "callbackUrl": "http://someaddress.com/for-handling-callback"
    },
    {
      "id": "bot_002",
      "name": "channel_002_bot",
      "profileImageUrl": "http://cnd.test.com/123.jpg",
      "type": "tutorial",
      "callbackUrl": "http://someaddress.com/for-handling-callback"
    },
  ],
  "hasNext": false
}

Last updated