계정에서 사용할 수 있는 봇 목록을 검색합니다.
이 API를 사용하려면 오직 봇 관리자 콘솔에서 생성된 애플리케이션에서 만들어진 JWT가 필요합니다. 이 API를 사용하려면 앱은 역할 관리 아래에 있는 역할 관리의 관리자 API 범위가 필요합니다.
GET https://{{host}}/api/public/bots?offset=0&limit=50s
쿼리 매개 변수
매개 변수 | 필수/선택 사항 | 설명 |
---|---|---|
host | 필수 | 환경 URL(예: https://bots.kore.ai) |
offset | 선택 사항 | 계정에서 생성된 봇을 가져올 페이지 번호를 지정합니다. 지정되지 않은 경우, 봇 목록의 첫 페이지인 0부터 시작합니다. |
limit | 선택 사항 | 가져올 봇의 수입니다. 적용할 수 있는 최대 한도는 50입니다. |
권한 부여
다음 구문을 포함한 헤더에 JWT를 포함한 API를 호출합니다. auth: {{JWT}}
콘텐츠 유형 응답
application/json
샘플 요청
curl -X GET \ 'https://{{host}}/api/public/bots?offset=0&limit=50' \ -H 'auth: {{YOUR_JWT_ACCESS_TOKEN}}' \
샘플 응답
{ "total": 69, "availableMore": true, "bots": [ { "_id": "st-eb254250-d9ea-5dfb-a369-7e104a115e51", "purpose": "customer", "createdBy": "u-5dad2ccd-b271-5c00-a338-2e6e25e1ec91", "defaultLanguage": "en", "accountId": "5c04ae921ad9976d311e9b4b", "type": "default", "resourceid": "btstreams", "status": "configured", "name": "GitHub Sample_1543832655266", "description": "Bot built using Github API’s to familiarize you with a few basic features of the platform. Provide the IDP information and Trying the bot with your Git repo. Start exploring the configurations to know more about alert, action and knowledge tasks." }, { "_id": "st-656dffde-34e7-58c6-885b-25a38112739d", "purpose": "employee", "createdBy": "u-5dad2ccd-b271-5c00-a338-2e6e25e1ec91", "defaultLanguage": "en", "accountId": "5c04ae921ad9976d311e9b4b", "type": "default", "resourceid": "btstreams", "status": "configured", "name": "Travel Planning Sample_1543832655269", "description": "This sample bots holds the 5 task types that the platform offers. The bot is built using open APIs to get flight information, location information and weather details. Explore and train the bot for natural language to better respond to your intent." } ] }