Skip to main content
POST
/
contacts
/
books
Create a new contact book
curl --request POST \
  --url https://ecsend.paysgator.com/contacts/books \
  --header 'Content-Type: application/json' \
  --header 'X-Api-Key: <api-key>' \
  --data '
{
  "name": "My Contacts",
  "description": "Personal contact list"
}
'
{
  "success": true,
  "name": "My Contacts"
}

Authorizations

X-Api-Key
string
header
required

Body

application/json
name
string
required
Example:

"My Contacts"

description
string
Example:

"Personal contact list"

Response

Contact book created

success
boolean
Example:

true

name
string
Example:

"My Contacts"