계정에서 사용자를 제거합니다.
이 API를 사용하려면 오직 봇 관리자 콘솔에서 생성된 애플리케이션에서 만들어진 JWT가 필요합니다. 이 API를 사용하려면 앱에 보안 및 제어 아래의 사용자 관리의 관리자 API 범위가 필요합니다.
DELETE https://{{host}}/api/public/users
참고 사항: 이 기능은 플랫폼의 v7.1에 도입되었습니다.
계정에서 사용자를 제거합니다.
이 API를 사용하려면 오직 봇 관리자 콘솔에서 생성된 애플리케이션에서 만들어진 JWT가 필요합니다. 이 API를 사용하려면 앱에 보안 및 제어 아래의 사용자 관리의 관리자 API 범위가 필요합니다.
DELETE https://{{host}}/api/public/users
참고 사항: 이 기능은 플랫폼의 v7.1에 도입되었습니다.
매개 변수 | 설명 |
---|---|
host | 환경 URL(예: https://bots.kore.ai) |
매개 변수 | 설명 |
---|---|
deleteEmailIds 또는 orgUserIds | 정보를 삭제할 각 사용자에 대한 이메일 또는 조직 사용자 ID의 배열입니다. |
다음 구문을 포함한 헤더에 JWT를 포함한 API를 호출합니다. auth: {{JWT}}
application/json
curl -X DELETE \
https://{{host}}/api/public/users \
-H 'Content-Type: application/json' \
-H 'auth: YOUR_JWT_ACCESS_TOKEN' \
-d '{
"deleteEmailIds"/"orgUserIds":["deskkore1@gmail.com"]
}'
{"msg": "Users are removed Successfully"};
{ "failedUserDetails": [ { "emailId": "deskkore1@gmail.com", "reason": { "statusCode": 400, "status": 400, "customCode": 400, "errors": [ { "msg": "Unauthorized to perform this activity", "code": 400 } ], "_headers": {}, "message": "Unauthorized to perform this activity", "name": "BadRequest" } } ] }
アカウントからユーザーを削除します。
このAPIには、ボット管理者コンソールからのみ作成されたアプリケーションによって生成されたJWTが必要です。このAPIを使用するために、アプリは [セキュリティおよび管理] の [ユーザー管理] の管理APIスコープを必要とします。
削除 https://{{host}}/api/public/users
注意:この機能は、プラットフォームのバージョン7.1で導入されました。
パラメータ | 説明 |
---|---|
ホスト | 環境URL(例: https://bots.kore.ai) |
パラメータ | 説明 |
---|---|
deleteEmailIdsまたはorgUserIds | 情報が削除される各ユーザーのメールアドレスまたは組織のユーザーIDの配列 |
以下の構文を使用して、JWTをヘッダーに含むAPIを呼び出します。 auth: {{JWT}}
application/json
curl -X DELETE \ https://{{host}}/api/public/users \ -H 'Content-Type: application/json' \ -H 'auth: YOUR_JWT_ACCESS_TOKEN' \ -d '{ "deleteEmailIds"/"orgUserIds":["deskkore1@gmail.com"] }'
{"msg": "Users are removed Successfully"};
{ "failedUserDetails": [ { "emailId": "deskkore1@gmail.com", "reason": { "statusCode": 400, "status": 400, "customCode": 400, "errors": [ { "msg": "Unauthorized to perform this activity", "code": 400 } ], "_headers": {}, "message": "Unauthorized to perform this activity", "name": "BadRequest" } } ] }
To remove users from an account.
This API requires JWT generated by an application created only from Bot Admin Console.
To use this API, app needs the Admin API Scope of User Management under Security & Control.
DELETE https://{{host}}/api/public/users
NOTE: This feature was introduced in ver7.1 of the platform.
Parameter | Description |
---|---|
host | Environment URL, for example, https://bots.kore.ai |
Parameter | Description |
---|---|
deleteEmailIds
or orgUserIds |
The array of email or org user ids for each user whose information is to be deleted |
Invoke the API with JWT in the header with the following syntax:
auth: {{JWT}}
application/json
curl -X DELETE \
https://{{host}}/api/public/users \
-H 'Content-Type: application/json' \
-H 'auth: YOUR_JWT_ACCESS_TOKEN' \
-d '{
"deleteEmailIds"/"orgUserIds":["deskkore1@gmail.com"]
}'
{"msg": "Users are removed Successfully"};
{ "failedUserDetails": [ { "emailId": "deskkore1@gmail.com", "reason": { "statusCode": 400, "status": 400, "customCode": 400, "errors": [ { "msg": "Unauthorized to perform this activity", "code": 400 } ], "_headers": {}, "message": "Unauthorized to perform this activity", "name": "BadRequest" } } ] }