Response Availability

Using the extUniqueId for survey link receipients, The response status can be checked.

POST https://{{env}}.survey2connect.com/v2/api/responses/availability

Path Parameters

NameTypeDescription

env*

String

Datacenter identifier for client

Headers

NameTypeDescription

Authorization

String

Bearer {access_token}

Request Body

NameTypeDescription

collectortoken*

String

Corresponding API collector unique token id (provided by platform)

contacts*

Array

An array of contacts to which surveys are to be triggered.

{
  "data": [
    {
      "status": "Not responded",
      "extUniqueId": "123456"
    },
    {
      "status": "Not responded",
      "extUniqueId": "234567"
    }
  ],
  "msg": "Success"
}

Last updated