EndpointsList Subscribers
Endpoints

List Subscribers

curl -X GET "/api/subscribers?limit=42&page=25&search=example_string" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)"
{
  "data": [
    {
      "email": "user@example.com",
      "tags": [
        "example_string"
      ],
      "notes": "example_string",
      "extra_attributes": {},
      "double_opt_in": true
    }
  ],
  "meta": {
    "page": 25,
    "limit": 42,
    "total": 42
  }
}
GET
/subscribers
GET
Security Scheme
Bearer Token (JWT)
Bearer Tokenstring
Required

Bearer token (JWT) - just enter the token, "Bearer" prefix will be added automatically

Request Preview
Response

Response will appear here after sending the request

Authentication

bearerAuth
header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Query Parameters

Responses

dataarray
metaobject
Was this page helpful?
Built with Documentation.AI

Last updated 5 days ago