Send As
The Send As feature allows a user to explicitly allow another user to send individual emails, bulk emails, and sequence emails as them.
Send As permission must be explicitly granted by the user that's allowing another user to send as them. This permission can be revoked by the allowing user at any time.
List all Send As Associations by allowing or allowed user.
GET /send_as/{?allowing_user_id, allowed_user_id}
A user only has access to associations they are involved in. This means that when using this endpoint, allowing_user_id
or allowed_user_id
must be equal to your user ID. If neither filter is provided, allowing_user_id
is assumed by default.
Create a Send As Association.
POST /send_as/
The allowing_user_id
must be equal to your user ID.
Delete a Send As Association by allowed user.
DELETE /send_as/{?allowing_user_id, allowed_user_id}
The allowing_user_id
must be equal to your user ID.
Supply both the allowing_user_id
and the allowed_user_id
to delete an association by those users.
Retrieve a single Send As Association.
GET /send_as/{id}/
Delete a Send As Association by ID.
DELETE /send_as/{id}/
Edit Send As Associations in bulk.
POST /send_as/bulk/
You can allow and disallow many other users to send as you in a single command by supplying the user IDs you want to allow and disallow.
Once completed, this endpoint returns all existing associations where your user is the allowing user.