← Tools Reference

Stannp

Stannp integration (Marketing). Imported from open-connector.

API key10 toolshttps://api.stannp.com
GET
stannp_get_account_balance
Retrieve the Stannp account balance for the connected regional account.

/v1/accounts/balance

GET
stannp_list_recipients
List Stannp recipients, optionally filtered by group and paginated.

/v1/recipients/list

3 parameters
ParamTypeRequiredDescription
groupIdintegeroptionalOptional group ID to filter recipients.
offsetintegeroptionalNumber of records to skip before returning results.
limitintegeroptionalMaximum number of records to return.
GET
stannp_get_recipient
Retrieve a single Stannp recipient by ID.

/v1/recipients/get/{recipientId}

1 parameter
ParamTypeRequiredDescription
recipientIdintegerrequiredID of the Stannp recipient to retrieve.
POST
stannp_create_recipient
Create a Stannp recipient and optionally add it to a group.

/v1/recipients/new

19 parameters
ParamTypeRequiredDescription
groupIdintegeroptionalOptional group ID to add the new recipient to.
titlestringoptionalRecipient title, such as Mr, Mrs, or Dr.
firstnamestringoptionalRecipient first name.
lastnamestringoptionalRecipient last name.
companystringoptionalRecipient company name.
jobTitlestringoptionalRecipient job title.
address1stringoptionalRecipient address line 1.
address2stringoptionalRecipient address line 2.
address3stringoptionalRecipient address line 3.
citystringoptionalRecipient city.
countystringoptionalRecipient county, province, or state.
postcodestringoptionalRecipient postal code or ZIP code.
countrystringoptionalRecipient ISO 3166-1 alpha-2 country code.
emailstringoptionalRecipient email address.
phoneNumberstringoptionalRecipient phone number.
refIdstringoptionalExternal reference ID for matching a recipient across systems.
onDuplicatestringoptionalDuplicate handling mode when Stannp finds an existing recipient.
testLevelstringoptionalDuplicate detection strategy used by Stannp.
customFieldsobjectoptionalCustom Stannp recipient fields to send as top-level recipient parameters.
POST
stannp_delete_recipient
Permanently delete a Stannp recipient by ID.

/v1/recipients/delete

1 parameter
ParamTypeRequiredDescription
recipientIdintegerrequiredID of the Stannp recipient to delete.
GET
stannp_list_groups
List Stannp recipient groups with optional offset and limit pagination.

/v1/groups/list

2 parameters
ParamTypeRequiredDescription
offsetintegeroptionalNumber of records to skip before returning results.
limitintegeroptionalMaximum number of records to return.
POST
stannp_create_group
Create an empty Stannp recipient group.

/v1/groups/new

1 parameter
ParamTypeRequiredDescription
namestringrequiredName of the new Stannp recipient group.
POST
stannp_add_recipients_to_group
Add one or more existing Stannp recipients to a recipient group.

/v1/groups/add/{groupId}

2 parameters
ParamTypeRequiredDescription
groupIdintegerrequiredID of the Stannp group to update.
recipientIdsarrayrequiredStannp recipient IDs to add to the group.
POST
stannp_remove_recipients_from_group
Remove one or more existing Stannp recipients from a recipient group.

/v1/groups/remove/{groupId}

2 parameters
ParamTypeRequiredDescription
groupIdintegerrequiredID of the Stannp group to update.
recipientIdsarrayrequiredStannp recipient IDs to remove from the group.
POST
stannp_validate_address
Validate and normalize a UK, US, or Canadian postal address with Stannp.

/v1/addresses/validate

10 parameters
ParamTypeRequiredDescription
companystringoptionalCompany name.
address1stringrequiredAddress line 1.
address2stringoptionalAddress line 2.
address3stringoptionalAddress line 3.
citystringoptionalAddress city.
postcodestringoptionalAddress postal code. Recommended for accurate validation.
countrystringoptionalISO 3166-1 alpha-2 country code. Recommended for accurate validation.
statestringoptionalTwo-letter US state abbreviation.
provincestringoptionalTwo-letter Canadian province abbreviation.
zipcodestringoptionalUS or Canadian ZIP/postal code. Required by Stannp if city is absent.