Listrak · Example Payload

Listrak Sms_Subscriber Example

Subscribe a phone number to an SMS list

Email MarketingSMS MarketingMarketing AutomationCross-ChannelRetailPush NotificationsData ImportPrivacy

Listrak Sms_Subscriber Example is an example object payload from Listrak, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

namedescriptionrequestresponse

Example Payload

Raw ↑
{
  "name": "Add SMS Subscriber",
  "description": "Subscribe a phone number to an SMS list",
  "request": {
    "method": "POST",
    "url": "https://api.listrak.com/sms/v1/List/{listId}/Subscriber",
    "headers": {
      "Authorization": "Bearer {access_token}",
      "Content-Type": "application/json"
    },
    "body": {
      "phone": "5551234567",
      "subscribeState": "subscribed"
    }
  },
  "response": {
    "status": 201,
    "body": {
      "status": 201,
      "data": {
        "resourceId": "5551234567"
      }
    }
  }
}