Bulk Group Actions
For more information on how to use these endpoints see: Bulk Group Actions
Get Bulk Adaptive Group Member Count GET /groups/member-count/bulk
Bulk Add Subscribers to Group POST /groups/{groupId}/subscribers/bulk-create
Bulk Remove Subscribers from Group POST /groups/{groupId}/subscribers/bulk-delete
Success
BadRequestError
UnauthorizedError
ForbiddenError
InternalServerError
GET /v3/groups/member-count/bulk?groupIds=text HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"success": true,
"error": "text",
"message": "text",
"data": {
"memberCounts": {
"ANY_ADDITIONAL_PROPERTY": 1
}
}
}
Record Limit
This endpoint will accept a maximum of 1,000
records in a single request.
Rate Limiting
This endpoint overrides the general rate limit with an account rate limit. Requests are limited by the authenticated account instead of the IP address. This endpoint is limited to 5
requests every 15
seconds
Success
BadRequestError
UnauthorizedError
ForbiddenError
RateLimitError
InternalServerError
POST /v3/groups/{groupId}/subscribers/bulk-create HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 21
{
"subscriberIds": [
1
]
}
{
"success": true,
"error": "text",
"message": "text",
"data": null
}
Record Limit
This endpoint will accept a maximum of 1,000
records in a single request.
Rate Limiting
This endpoint overrides the general rate limit with an account rate limit. Requests are limited by the authenticated account instead of the IP address. This endpoint is limited to 5
requests every 15
seconds
Success
BadRequestError
UnauthorizedError
ForbiddenError
RateLimitError
InternalServerError
POST /v3/groups/{groupId}/subscribers/bulk-delete HTTP/1.1
Host: api.mobile-text-alerts.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 21
{
"subscriberIds": [
1
]
}
{
"success": true,
"error": "text",
"message": "text",
"data": null
}
Last updated
Was this helpful?