GET
/
v1
/
sms
/
campaigns
/
{campaign}
/
logs
cURL
curl --request GET \
  --url https://api.comm.com/api/v1/sms/campaigns/{campaign}/logs \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "caller_id": "<string>",
      "caller_type": "Send",
      "text": "<string>",
      "created_at": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

campaign
string<uuid>
required

The campaign ID

Query Parameters

page
integer | null
per_page
integer | null
search_ids
string<uuid>[]

Response

200
application/json

Array of SmsCampaignLogResource

The response is of type object.