← Tools Reference

BigMailer

BigMailer integration (Marketing, Communication). Imported from open-connector.

API key13 toolshttps://api.bigmailer.io
GET
bigmailer_list_brands
List brands in the BigMailer account.

/v1/brands

2 parameters
ParamTypeRequiredDescription
limitintegeroptionalThe maximum number of objects to return.
cursorstringoptionalThe pagination cursor returned by a previous BigMailer response.
GET
bigmailer_get_brand
Get one BigMailer brand by ID.

/v1/brands/{brandId}

1 parameter
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
GET
bigmailer_list_lists
List contact lists in a BigMailer brand.

/v1/brands/{brandId}/lists

3 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
limitintegeroptionalThe maximum number of objects to return.
cursorstringoptionalThe pagination cursor returned by a previous BigMailer response.
POST
bigmailer_create_list
Create a contact list in a BigMailer brand.

/v1/brands/{brandId}/lists

2 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
namestringrequiredThe list name.
GET
bigmailer_get_list
Get one BigMailer contact list by ID.

/v1/brands/{brandId}/lists/{listId}

2 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
listIdstringrequiredThe BigMailer list ID.
POST
bigmailer_update_list
Update a BigMailer contact list name.

/v1/brands/{brandId}/lists/{listId}

3 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
listIdstringrequiredThe BigMailer list ID.
namestringrequiredThe new list name.
DELETE
bigmailer_delete_list
Delete a BigMailer contact list without deleting its contacts.

/v1/brands/{brandId}/lists/{listId}

2 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
listIdstringrequiredThe BigMailer list ID.
GET
bigmailer_list_contacts
List contacts in a BigMailer brand, optionally filtered by list.

/v1/brands/{brandId}/contacts

4 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
limitintegeroptionalThe maximum number of objects to return.
cursorstringoptionalThe pagination cursor returned by a previous BigMailer response.
listIdstringoptionalThe BigMailer list ID.
POST
bigmailer_create_contact
Create a contact in a BigMailer brand.

/v1/brands/{brandId}/contacts

7 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
validatebooleanoptionalWhether BigMailer should validate email deliverability before adding the contac…
emailstringrequiredThe contact email address.
fieldValuesarrayoptionalField values to save with the contact. Each name must match a BigMailer field t…
listIdsarrayoptionalIDs of lists the contact should belong to.
unsubscribeAllbooleanoptionalWhether to unsubscribe the contact from all future campaigns regardless of mess…
unsubscribeIdsarrayoptionalIDs of message types the contact should be unsubscribed from.
GET
bigmailer_get_contact
Get one BigMailer contact by ID or email address.

/v1/brands/{brandId}/contacts/{contactId}

2 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
contactIdstringrequiredThe BigMailer contact ID or email address.
POST
bigmailer_update_contact
Update a BigMailer contact by ID or email address.

/v1/brands/{brandId}/contacts/{contactId}

10 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
contactIdstringrequiredThe BigMailer contact ID or email address.
fieldValuesOpstringoptionalHow BigMailer should apply the supplied values.
listIdsOpstringoptionalHow BigMailer should apply the supplied values.
unsubscribeIdsOpstringoptionalHow BigMailer should apply the supplied values.
emailstringoptionalThe contact email address.
fieldValuesarrayoptionalField values to save with the contact. Each name must match a BigMailer field t…
listIdsarrayoptionalIDs of lists the contact should belong to.
unsubscribeAllbooleanoptionalWhether to unsubscribe the contact from all future campaigns regardless of mess…
unsubscribeIdsarrayoptionalIDs of message types the contact should be unsubscribed from.
POST
bigmailer_upsert_contact
Create or update a BigMailer contact by email address.

/v1/brands/{brandId}/contacts/upsert

7 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
validatebooleanoptionalWhether BigMailer should validate email deliverability before adding the contac…
emailstringrequiredThe contact email address.
fieldValuesarrayoptionalField values to save with the contact. Each name must match a BigMailer field t…
listIdsarrayoptionalIDs of lists the contact should belong to.
unsubscribeAllbooleanoptionalWhether to unsubscribe the contact from all future campaigns regardless of mess…
unsubscribeIdsarrayoptionalIDs of message types the contact should be unsubscribed from.
DELETE
bigmailer_delete_contact
Delete a BigMailer contact by ID or email address.

/v1/brands/{brandId}/contacts/{contactId}

2 parameters
ParamTypeRequiredDescription
brandIdstringrequiredThe BigMailer brand ID.
contactIdstringrequiredThe BigMailer contact ID or email address.