POST
/
v4
/
sequences
/
{sequence_id}
/
subscribers
curl --request POST \
  --url https://api.kit.com/v4/sequences/{sequence_id}/subscribers \
  --header 'Content-Type: application/json' \
  --header 'X-Kit-Api-Key: <api-key>' \
  --data '{
  "email_address": "[email protected]"
}'
{
  "subscriber": {
    "id": 16448,
    "first_name": "Alice",
    "email_address": "[email protected]",
    "state": "active",
    "created_at": "2023-02-17T11:43:55Z",
    "added_at": "2023-02-17T11:43:55Z",
    "fields": {}
  }
}

Authorizations

X-Kit-Api-Key
string
header
required

Authenticate API requests via an API Key

Path Parameters

sequence_id
integer
required

Body

application/json

Response

200
application/json

Returns a 200 when the subscriber has already been added to the sequence

The response is of type object.