* Client action api
About 1 min
* Client action api
URI
/wscrm-bus-api/open/action/batchAdd
Request method
POST、Content-Type: application/json
Description
The open action must ensure that the account and customer service number have been logged in, and it will automatically fail after one minute of not logging in
Open different friend sessions with the same account and customer service number at the same time, and open them every 10 seconds
Create action api
Request params:
- Request params
Attribute | Type | Required | Description |
---|---|---|---|
tenantId | Long | yes | tenant id |
userName | String | yes | user name (login account) |
data | List | yes | data |
token | String | yes | token |
createTime | String | yes | request time (yyyy-MM-dd HH:mm:ss) |
data:
Attribute | Type | Required | Description |
---|---|---|---|
agentAccount | Long | yes | user name |
whatsId | String | yes | |
friendWhatsId | String | yes | friend whatsapp |
type | Integer | yes | Type 1、open friend whatsapp window |
Example Request:
{
"tenantId": 500766,
"userName": "ykts",
"token": "d2fa5b87d7aa93812ed31e2117190f04",
"createTime": "2022-11-22 15:00:00",
"data": [
{
"agentAccount": "ykts02",
"whatsId": "13633800088",
"friendWhatsId": "13633800088",
"type": "1"
}
]
}
Response:
Attribute | Type | Required | Description |
---|---|---|---|
code | Integer | yes | code |
message | String | yes | message |
data | String | yes | data |
{
"code": 200,
"message": "Success",
"data": ["20c7c02bf11b494286dd165da47388c9"]
}
Query action executed result api
URI
/open/action/callbackResult
Request method
POST、Content-Type: application/json
Request params:
- Request params
Attribute | Type | Required | Description |
---|---|---|---|
tenantId | Long | yes | tenant id |
userName | String | yes | user name(login account) |
data | List | yes | data |
token | String | yes | token |
createTime | String | yes | request time (yyyy-MM-dd HH:mm:ss) |
Example request:
{
"tenantId": 500766,
"userName": "ykts",
"token": "d2fa5b87d7aa93812ed31e2117190f04",
"createTime": "2022-11-22 15:00:00",
"data": ["ad518a4271fa43c8937612c5f60396f8"]
}
Response:
Attribute | Type | Required | Description |
---|---|---|---|
id | String | yes | id |
tenantId | Long | yes | tenant id |
agentAccount | String | yes | user name |
whatsId | String | yes | |
friendWhatsId | String | yes | friend whatsapp |
type | Integer | yes | Type 1、open client user chat window |
executeStatus | String | yes | execute status 0 no 1 success 2 fail |
executeTime | String | yes | execute time (default '1970-01-01 08:00:01') |
Response example:
{
"code": 200,
"message": "Success",
"data": [
{
"id": "ad518a4271fa43c8937612c5f60396f8",
"tenantId": 500766,
"agentAccount": "ykts02",
"whatsId": "22222@c.us",
"friendWhatsId": "33333@c.us",
"type": 1,
"executeStatus": 2,
"executeTime": "1970-01-01 08:00:01"
}
]
}