Actions (47)
Forms · 9
- Add subscriber to form (by ID)POST /v4/forms/{form_id}/subscribers/{subscriber_id}
Add an existing subscriber to a form by their ID.
documented - Add subscriber to form (by email)POST /v4/forms/{form_id}/subscribers
Add a subscriber to a form using their email address.
documented - Bulk add subscribers to formsPOST /v4/bulk/forms/subscribers
Bulk add subscribers to forms.
documented - Create formPOST /v4/forms
Create a new form (opt-in/landing page).
documented - Delete formDELETE /v4/forms/{form_id}
Delete a form.
documented - Get formGET /v4/forms/{form_id}
Retrieve details for a single form.
documented - List formsGET /v4/forms
Return all forms in the account.
documented - List subscribers for formGET /v4/forms/{form_id}/subscribers
List subscribers attached to a form.
documented - Update formPUT /v4/forms/{form_id}
Update a form's configuration.
documented
Subscribers · 7
- Create subscriberPOST /v4/subscribers
Create a new subscriber.
documented - Find subscriber by emailGET /v4/subscribers?email_address={email}
Find a subscriber by their email address.
documented - Get subscriberGET /v4/subscribers/{id}
Return details for a single subscriber.
documented - List subscribersGET /v4/subscribers
List subscribers in your account.
documented - List tags for subscriberGET /v4/subscribers/{subscriber_id}/tags
List tags attached to a subscriber.
documented - Unsubscribe subscriberPOST /v4/subscribers/{id}/unsubscribe
Unsubscribe a subscriber.
documented - Update subscriberPUT /v4/subscribers/{id}
Update an existing subscriber.
documented
Tags · 7
- Create a tagPOST /v4/tags
Create a tag.
documented - List subscribers for a tagGET /v4/tags/{tag_id}/subscribers
List subscribers associated with a tag.
documented - List tagsGET /v4/tags
List all tags on the account.
documented - Remove tag from subscriberDELETE /v4/tags/{tag_id}/subscribers/{subscriber_id}
Remove a tag from a subscriber.
documented - Remove tag from subscriber (by email)DELETE /v4/tags/{tag_id}/subscribers/{subscriber_id}
Remove a tag from a subscriber by email address.
documented - Tag subscriber (by ID)POST /v4/tags/{tag_id}/subscribers/{subscriber_id}
Tag a subscriber with the specified tag by subscriber ID.
documented - Tag subscriber (by email)POST /v4/tags/{tag_id}/subscribers
Tag a subscriber with the specified tag by email address.
documented
Broadcasts · 6
- Create broadcastPOST /v4/broadcasts
Draft or schedule a broadcast to be sent to subscribers or published to the web.
documented - Delete broadcastDELETE /v4/broadcasts/{id}
Delete a broadcast.
documented - Get broadcastGET /v4/broadcasts/{id}
Retrieve details for a single broadcast by ID.
documented - Get broadcasts statsGET /v4/broadcasts/stats
Get statistics for a list of broadcasts.
documented - List broadcastsGET /v4/broadcasts
Return a list of broadcasts for the authenticated account.
documented - Update broadcastPUT /v4/broadcasts/{id}
Update the attributes of an existing broadcast.
documented
Custom Fields · 6
- Bulk create custom fieldsPOST /v4/bulk/custom_fields
Create multiple custom fields in a single request.
documented - Bulk update subscriber custom field valuesPOST /v4/bulk/custom_fields/subscribers
Bulk update custom field values for subscribers.
documented - Create a custom fieldPOST /v4/custom_fields
Create a new custom field for subscribers.
documented - Delete custom fieldDELETE /v4/custom_fields/{id}
Delete a custom field.
documented - List custom fieldsGET /v4/custom_fields
Return a paginated list of custom fields for the account.
documented - Update a custom fieldPUT /v4/custom_fields/{id}
Update a specific custom field.
documented
Accounts · 3
- Get creator profileGET /v4/account/creator_profile
Return the creator's public/profiles data.
documented - Get current accountGET /v4/account
Return details about the authenticated Kit account and its owner.
documented - Get email statsGET /v4/account/email_stats
Retrieve email engagement statistics for the account (recent period).
documented