GET
/
v1
/
sms
/
texts
/
generate
/
{smsCampaignText}
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/texts/generate/{smsCampaignText} \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "text": "<string>",
      "times_used": 123,
      "is_active": true,
      "stats": {
        "sent": 123,
        "clicks": 123,
        "leads": 123,
        "sales": 123
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

smsCampaignText
string<uuid>
required

The sms campaign text ID

Response

200
application/json

Array of GeneratedTextsResource

The response is of type object.