EndpointsUpdate Subscriber
Endpoints

Update Subscriber

curl -X PUT "/api/subscribers/update" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_TOKEN (JWT)" \
  -d '{
  "email": "user@example.com",
  "tags": [
    "example_string"
  ],
  "notes": "example_string",
  "extra_attributes": {},
  "double_opt_in": true
}'
{
  "email": "user@example.com",
  "tags": [
    "example_string"
  ],
  "notes": "example_string",
  "extra_attributes": {},
  "double_opt_in": true
}
PUT
/subscribers/update
PUT
Security Scheme
Bearer Token (JWT)
Bearer Tokenstring
Required

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

Content-Typestring
Required

The media type of the request body

Options: application/json
Request Preview
Response

Response will appear here after sending the request

Authentication

bearerAuth
header
Authorizationstring
Required

Bearer token (JWT). Authentication token required.

Responses

emailstring
tagsstring[]
notesstring

HTML or plain text

extra_attributesobject
double_opt_inboolean
Was this page helpful?
Built with Documentation.AI

Last updated 5 days ago