Authentication
App Builder API
Livechat API
Payment Gateway Plugin
Connect API
- Authentication Overview
- API Reference
- Get Profile
- List Categories
- List Available Apps
- Get App Information
- Connect Account
- Get Connected Account
- Popular Match List
- Popular Match Detail
- Get List Of Tiggers
- Trigger Detail By ID
- Get List Of Actions
- Action Detail By ID
- Create Connect With Popular Match
- List Drop Down Options
- Edit Trigger Options
- Edit Action Option
- Run Test Connect
- Turn On Connect
- Update Connect Name
- Check Connect History
- Connect List
- Turn Off Connect
- Delete Connect
Introduction
Appy Pie provides a number of APIs for different features to allow users to obtain information on various categories in the database. Our APIs are based on REST and use standard HTTP response codes, verbs, and authentication. Using Appy Pie APIs, you can develop a reliable integration between your system and our platform. This will enable you to obtain and manage the required data available on our platform.
With bindings in multiple programming languages including Shell, PHP, NodeJs, and JavaScript, you can easily switch to your preferred language to view the sample code. Appy Pie APIs include APIs for our Food Court Feature, Store Feature, and Form Builder Feature. You can access API endpoints for the respective features to retrieve information on various categories in our database. For instance, using the Food Court APIs, you can obtain all the information that exists in the Foodcourt feature. Similarly, you can use the Store and Formbuilder APIs to obtain information that exists in the respective features.
API
To generate a new access token key, Please use the Request URL and right side process.
Request URL
POST https://openapi2.appypie.com/create-refresh-token
Query Parameters
Parameter Name | Required | Parameter Type | Parameter Description |
---|---|---|---|
tokenKey | Yes | String | Token Key is pre-defined. |
secretKey | Yes | String | Secret Key is pre-defined. |
Errors
Following are the error codes that indicate the success or failure of an API request:
Error Code | Meaning |
---|---|
400 | Bad Request -- Your request is invalid. |
401 | Unauthorized -- Your API key is wrong. |
403 | Forbidden -- The method requested is hidden for administrators only. |
404 | Not Found -- The specified method could not be found. |
405 | Method Not Allowed -- You tried to access a method with an invalid method. |
406 | Not Acceptable -- You requested a format that is not json. |
410 | Gone -- Request has been removed from our servers. |
429 | Too Many Requests |
500 | Internal Server Error -- We had a problem with our server. Try again later. |
503 | Service Unavailable -- We are temporarily offline for maintenance. Please try again later. |
2032 | API Key is required |
2034 | Email is required |
2036 | Invalid API Key |
2038 | Provide valid API Key |
2039 | Email already exists |
2040 | Phone already exists |
2041 | Email Invalid |
1wget --no-check-certificate --quiet \
2 --method POST \
3 --timeout=0 \
4 --header "ACCESSTOKEN: Access Token Key" \
5 --header "Content-Type: application/json" \
6 --body-data
7 '{
8 "tokenKey":"TOKEN_KEY",
9 "secretKey":"SECRET_KEY"
10 }' \
11 "https://openapi2.appypie.com/create-refresh-token"
{ "status": "1", "accessToken": ACCESS_TOKEN }