SNSFeiShuTestConnection
API Request
URLs
POST zstack/v1/sns/application-endpoints/feishu/test-connectionHeaders
Authorization: OAuth the-session-uuidBody
Note: In
the preceding sample, both systemTags and userTags are optional.
These two fields can be included in the body structure.
{
"params": {
"url": "https://open.feishu.cn/open-apis/bot/v2/hook/006879a3-0898-4428-aad4-3221db3daf81",
"atAll": true,
"atPersonUserIds": [
"13062689903",
"13062689901"
],
"secret": "fiSmveXkeD2jIjrENHYjQd",
"testMsg": "hello world",
"endpointUuid": "1c201c27a81740ddadbc5d2f3f38a5e4"
},
"systemTags": [],
"userTags": []
}
Note: In
the preceding sample, both systemTags and userTags are optional.
These two fields can be included in the body structure.Curl
Sample
curl -H "Content-Type: application/json;charset=UTF-8" \
-H "Authorization: OAuth b86c9016b4f24953a9edefb53ca0678c" \
-X POST -d '{"params":{"url":"https://open.feishu.cn/open-apis/bot/v2/hook/006879a3-0898-4428-aad4-3221db3daf81","atAll":true,"atPersonUserIds":["13062689903","13062689901"],"secret":"fiSmveXkeD2jIjrENHYjQd","testMsg":"hello world","endpointUuid":"1c201c27a81740ddadbc5d2f3f38a5e4"}}' \
http://localhost:8080/zstack/v1/sns/application-endpoints/feishu/test-connectionRequest Parameters
| Name | Type | Location | Description | Optional Value | Starting Version |
|---|---|---|---|---|---|
| testMsg | String | body (contained in the params structure) | Testing message text. | 5.0.0 | |
| endpointUuid | String | body (contained in the params structure) | Optional. The FeiShu endpoint uuid. | 5.0.0 | |
| systemTags | List | body | Optional. The system tag. | 5.0.0 | |
| userTags | List | body | Optional. The user tag. | 5.0.0 | |
| url | String | body (contained in the params structure) | Optional. The webhook url. | 5.0.0 | |
| atAll | Boolean | body (contained in the params structure) | Optional. Whether @all or not. | 5.0.0 | |
| atPersonUserIds | List | body (contained in the params structure) | Optional. @person user ID. | 5.0.0 | |
| secret | String | body (contained in the params structure) | Optional. The FeiShu secret key. | 5.0.0 |
API Response
Sample
Response
{
"connected": true,
"webhookResp": {}
}| Name | Type | Description | Starting Version |
|---|---|---|---|
| success | boolean | 5.0.0 | |
| connected | boolean | The webhook url connectivity id. (connectivity only) | 5.0.0 |
| webhookResp | LinkedHashMap | Webhook url sents a test message to the other end of the return. (https://open.feishu.cn/document/client-docs/bot-v3/add-custom-bot#e2f7069c) | 5.0.0 |
| error | ErrorCode | The error code. If not null, the operation fails, or vice versa. For more information, see error. | 5.0.0 |
#error
| Name | Type | Description | Starting Version |
|---|---|---|---|
| code | String | The error code, which is a numbered or alphanumeric code that specifies an error. For example, SYS.1000, HOST.1001. | 5.0.0 |
| description | String | The brief description of the error. | 5.0.0 |
| details | String | The details about the error. | 5.0.0 |
| elaboration | String | The reserved field. Default value: null. | 5.0.0 |
| opaque | LinkedHashMap | The reserved field. Default value: null. | 5.0.0 |
| cause | ErrorCode | The root error, which is the associated root cause of the current error. If no root error exists, this parameter is null. | 5.0.0 |
SDK Sample
Java
SDK
SNSFeiShuTestConnectionAction action = new SNSFeiShuTestConnectionAction();
action.url = "https://open.feishu.cn/open-apis/bot/v2/hook/006879a3-0898-4428-aad4-3221db3daf81";
action.atAll = true;
action.atPersonUserIds = asList("13062689903","13062689901");
action.secret = "fiSmveXkeD2jIjrENHYjQd";
action.testMsg = "hello world";
action.endpointUuid = "1c201c27a81740ddadbc5d2f3f38a5e4";
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c";
SNSFeiShuTestConnectionAction.Result res = action.call();Python
SDK
SNSFeiShuTestConnectionAction action = SNSFeiShuTestConnectionAction()
action.url = "https://open.feishu.cn/open-apis/bot/v2/hook/006879a3-0898-4428-aad4-3221db3daf81"
action.atAll = true
action.atPersonUserIds = [13062689903, 13062689901]
action.secret = "fiSmveXkeD2jIjrENHYjQd"
action.testMsg = "hello world"
action.endpointUuid = "1c201c27a81740ddadbc5d2f3f38a5e4"
action.sessionId = "b86c9016b4f24953a9edefb53ca0678c"
SNSFeiShuTestConnectionAction.Result res = action.call()