Get a SurveyOL token, use OpenClaw to create a survey, and distribute invitations by email. See the workflow

Mobile SMS Collector

A mobile SMS collector is the collector used to send SMS invitations. Create it with type set to Mobile SMS, then use the SMS invitation API with its collector ID.

Create Collector

  • Method: POST
  • URL: https://api.surveyol.com/v1/survey/{surveyId}/collector
curl --request POST \
--url https://api.surveyol.com/v1/survey/f04e6345-dd11-4342-8975-0a718d853505/collector \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
  "type": "Mobile SMS",
  "title": "My Mobile SMS"
}'

Manage Collector

  • List: GET https://api.surveyol.com/v1/survey/{surveyId}/collectors
  • View: GET https://api.surveyol.com/v1/collector/{collectorId}
  • Update: POST https://api.surveyol.com/v1/collector/{collectorId}
  • Delete: DELETE https://api.surveyol.com/v1/collector/{collectorId}

See SMS Invitation for sending and listing invitations.