cURL
curl --request POST \ --url https://api.kit.com/v4/tags/{tag_id}/subscribers \ --header 'Content-Type: application/json' \ --header 'X-Kit-Api-Key: <api-key>' \ --data '{ "email_address": "[email protected]" }'
{ "subscriber": { "id": 16736, "first_name": "Alice", "email_address": "[email protected]", "state": "active", "created_at": "2023-02-17T11:43:55Z", "tagged_at": "2023-02-17T11:43:55Z", "fields": {} } }
The subscriber being tagged must already exist. Subscribers can be created using the “Create a subscriber” endpoint.
Authenticate API requests via an API Key
Returns a 200 when the subscriber already has the tag
The response is of type object.
object
Was this page helpful?