Skip to main content
GET
/
api
/
marketplace
/
automations
/
sms-status
Get SMS status for all automations in user organization
curl --request GET \
  --url https://your-instance.example.com/api/marketplace/automations/sms-status \
  --header 'Authorization: Bearer <token>'
[
  {
    "automationId": "5f7b1c2e8a1d4e0012c3b4a5",
    "automationName": "Inbound Support",
    "hasSmsEnabled": true,
    "phoneNumber": "+12362320246",
    "message": "SMS-ready"
  },
  {
    "automationId": "6a8c2d3f9b1e5a0023d4c5b6",
    "automationName": "Outreach Campaign",
    "hasSmsEnabled": false,
    "phoneNumber": "",
    "message": "No SMS number provisioned"
  }
]

Authorizations

Authorization
string
header
required

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

Response

Automation SMS statuses returned

automationId
string
required
automationName
string
required
hasSmsEnabled
boolean
required
phoneNumber
string
message
string
Example:
[
{
"automationId": "5f7b1c2e8a1d4e0012c3b4a5",
"automationName": "Inbound Support",
"hasSmsEnabled": true,
"phoneNumber": "+12362320246",
"message": "SMS-ready"
},
{
"automationId": "6a8c2d3f9b1e5a0023d4c5b6",
"automationName": "Outreach Campaign",
"hasSmsEnabled": false,
"phoneNumber": "",
"message": "No SMS number provisioned"
}
]