Get started
This document provides information on the APIs available for SaaS partners to integrate with our platform. These APIs enable seamless validation and integration of businesses with partner.
Validate Business
The Validate Business API is designed to ensure that a business is properly connected to its respective Business(EasySocial user). If the business is not yet linked, this API will automatically associate the business with the partner, facilitating a seamless onboarding process. This process helps validate the relationship between the business and the partner, ensuring smooth integration.
Why this is important?
This API acts as a bridge between EasySocial and the Partner . The business provides a token, which grants Account access to manage various operations like reviewing account status, account details, creating template messages, syncing contacts, getting notified for any changes made or any updates on EasySocial account, allowing for secure and efficient business-partner connections.
How to get the Partner Access Token?
In order to get partner access token you can write an email to partners@easysocial.io and we will be happy to share a partner access token with you.
How can a Business generate a Token?
If you're unsure how to generate a token, click here.
GET
/validate-business
EXAMPLE REQUEST
curl --location '/validate-business' \
--header 'partner-token;' \
--header 'auth-token;'
EXAMPLE RESPONSE
{
"status": 200,
"success": true,
"message": "success",
"payload": {
"is_authenticated": false
}
}