Bulk Group Actions

For more information on how to use these endpoints see: Bulk Group Actions

Get Bulk Adaptive Group Member Count

get
Authorizations
Query parameters
groupIdsstringRequired
Responses
200

Success

application/json
Responseall of
get
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
    }
  }
}

Bulk Add Subscribers To Group

post

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

Authorizations
Path parameters
groupIdstringRequired
Body
subscriberIdsnumber[]Required
Responses
200

Success

application/json
post
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
}

Bulk Remove Subscribers from Group

post

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

Authorizations
Path parameters
groupIdstringRequired
Body
subscriberIdsnumber[]Required
Responses
200

Success

application/json
post
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?