Sendfox

Learn how to use Sendfox with Composio

Overview

Enum

SENDFOX

Description

Template description for sendfox

Authentication Details

api_key
stringRequired

Actions

Tool to remove a contact from a specific list in sendfox. use when you need to disassociate a contact by its id from a sendfox list.

Action Parameters

contact_id
integerRequired
list_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of automations. use when you need to list all automations for your sendfox account.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a paginated list of campaigns. use when you need to fetch campaigns in batches or implement pagination. example: "fetch campaigns page 2 with 50 per page.".

Action Parameters

limit
integer
page
integer

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a paginated list of contacts. use when you need to fetch contacts in pages, optionally filtering by email.

Action Parameters

email
string
limit
integer
offset
integer

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a contact by their email address. use when you need to fetch an existing contact’s details by providing their email.

Action Parameters

email
Required

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a contact's details by id. use after obtaining the contact id to get full contact information.

Action Parameters

contact_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to retrieve a list of user contact fields. use when you need to discover all contact field metadata before creating or updating contacts. use after authentication is complete.

Action Parameters

Action Response

data
object
error
string
successful
boolean
Tool to retrieve paginated contact lists. use when you need to fetch all your sendfox lists.

Action Parameters

Action Response

data
array
error
string
successful
boolean
Tool to retrieve a specific contact list by its id. use when you have a list id and need its details before performing list operations.

Action Parameters

list_id
integerRequired

Action Response

data
object
error
string
successful
boolean
Tool to unsubscribe a contact. use when you need to globally mark a contact as unsubscribed.

Action Parameters

email
Required

Action Response

data
object
error
string
successful
boolean
Tool to create a new contact. use when you need to add a new subscriber to sendfox.

Action Parameters

email
stringRequired
first_name
string
last_name
string
lists
array

Action Response

data
object
error
string
successful
boolean
Tool to create a new contact list. use when you need to add a new list to your sendfox account. example: create a list named 'newsletter subscribers'.

Action Parameters

name
stringRequired

Action Response

data
object
error
string
successful
boolean