Count
Get contact count
contacts.count() -> ContactCountResponse
/api/v2/contacts/count
Get the total number of contacts
Returns
Get contact count
from sendblue_api import SendblueAPI
client = SendblueAPI(
api_key="My API Key",
api_secret="My API Secret",
)
response = client.contacts.count()
print(response.count)
{
"count": 0
}
Returns Examples
{
"count": 0
}