/API / General Principles of Working with API
Content
URL API
To integrate with other services and applications, we recommend setting up integration via Zapier.
You will be able to transfer data between services without the help of programmers.
Learn more about Integration with Zapier.
API-service functions are taken from http://username.influencersoft.com/api/ adding the function name. For example, http://username.influencersoft.com/api/AddLeadToGroup.
Username – your store’s login.
Please note, you can also use your own domain linked to your account instead of username.influencersoft.com. For more details, see the section “Site” ⇒ “Settings” ⇒ “Domains” in the personal account.
How to Call
Parameters are transferred by POST method with encoding URL-encode. For example:
<!--?php Send(http_build_query($send_data)); ?-->
where,
- Send is the function that sends a query to the API;
- http_build_query is a default PHP function;
- $send_data is an array of transferred parameters.
Each query must be signed. For this, the hash field is transferred to the query.
It is formed as follows:
<!--?php md5("$params::$user_id::$secret") ?-->
where,
- $params are URL encode parameters transferred to the API function;
- $user_id is the login for the InfluencerSoft system;
- $secret is a secret key that can be obtained from the account’s personal account in the API section.
Your system will receive the result of the function in the JSON format in response.
For more details, see the API Service Responses.
Articles
API Response Statuses, Codes, and Descriptions
Comments
0 comments
Please sign in to leave a comment.