This is an old revision of the document!


API Mailing List Endpoints

Get Mailing List

This Endpoint is used to get a single Mailing List in your Sentori Account.

Endpoint

URI https://api.sentoriapp.com/v2.0/mailinglists/MailingListExternalID/
Method GET

Response

Field TypeDescription
ExternalID string ID of the Mailing List.
Namestring Name of the Mailing List.
Description string Description of the Mailing List.
Example
{
	"ExternalID": "1234ABCD",
	"Name": "Members",
	"Description": "For members who receive extra special discount emails."
}

Get All Mailing Lists

This Endpoint is used to get all Mailing Lists in your Sentori Account.

Endpoint

URI https://api.sentoriapp.com/v2.0/mailinglists/
Method GET

Response

Field TypeDescription
ExternalID string ID of the Mailing List.
Namestring Name of the Mailing List.
Description string Description of the Mailing List.
Example
[
	{
		"ExternalID": "1234ABCD",
		"Name": "Members",
		"Description": "For members who receive extra special discount emails."
	},
	{
		"ExternalID": "ABCD1234",
		"Name": "Special Offers",
		"Description": "For contacts to receive our special offers emails."
	}
]