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
Get Action Details by ID
The most common use case of the Connect API will be providing a service, or access to a platform through the OAuth2 API.
Authorization: Bearer YOUR_ACCESS_TOKEN (eyJhbG*************)
Access the API using access token
Get Action Details by Action ID
Helps you to fetch action details by action ID
Request URL
GET https://developer.appypie.com/api/v2/integrations/app/action/detail/{actionId}
Query Parameters
Parameter Name | Required | Parameter Type | Parameter Description |
---|---|---|---|
NA | No | String | NA |
Errors
This error section displays all the errors with details.
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 |
To authorize, use this code:
1wget --no-check-certificate --quiet \
2 --method GET \
3 --timeout=0 \
4 --header "ACCESSTOKEN: Access Token Key" \
5 --header "Content-Type: application/json" \
6 --body-data
7 '{
8 "NA":"NA"
9 }' \
10 "https://developer.appypie.com/api/v2/integrations/app/action/detail/{actionId}"
RESPONSE
{ "success": true, "data": { "_id": "5f697acf77c*************", "appId": "kfc4x2uh0n**************", "trigger_action_name": "Unsubscribe Email", "trigger_action_displayname": "Unsubscribe Email", "type": "action", "status": 1, "_updated_at": "2020-12-04T06:24:43.611Z", "desc": "Unsubscribes an email address from a list of your choosing.", "options": [ { "label": "Account", "required": "true", "type": "select", "name": "ACT__Account", "placeholder": "", "function": "createsubscriberAccountForAction", "isClickEnable": true }, { "label": "List", "required": "true", "type": "select", "name": "ACT__List", "placeholder": "", "function": "listsubscriberListForAction", "isClickEnable": true } ], "response_data": { "format": true, "date": "2020-12-07T08:42:40.181Z", "data": [ { "text": "Is Verified", "value": "Is Verified", "key": "is_verified" }, { "text": "Self Link", "value": "Self Link", "key": "self_link" }, { "text": "Ad Tracking", "value": "Ad Tracking", "key": "ad_tracking" } ], "type": "static" } } }