Skip to main content

* 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
AttributeTypeRequiredDescription
tenantIdLongyestenant id
userNameStringyesuser name (login account)
dataListyesdata
tokenStringyestoken
createTimeStringyesrequest time (yyyy-MM-dd HH:mm:ss)

data:

AttributeTypeRequiredDescription
agentAccountLongyesuser name
whatsIdStringyeswhatsapp
friendWhatsIdStringyesfriend whatsapp
typeIntegeryesType 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:

AttributeTypeRequiredDescription
codeIntegeryescode
messageStringyesmessage
dataStringyesdata
{
  "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
AttributeTypeRequiredDescription
tenantIdLongyestenant id
userNameStringyesuser name(login account)
dataListyesdata
tokenStringyestoken
createTimeStringyesrequest 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:

AttributeTypeRequiredDescription
idStringyesid
tenantIdLongyestenant id
agentAccountStringyesuser name
whatsIdStringyeswhatsapp
friendWhatsIdStringyesfriend whatsapp
typeIntegeryesType 1、open client user chat window
executeStatusStringyesexecute status 0 no 1 success 2 fail
executeTimeStringyesexecute 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"
    }
  ]
}
Last update:
Contributors: songjun,zhangzhuangzhuang