Appy Pie App Features API Reference - Features & APIs Overview

App Features

App Features API allows you to obtain the list of features that exist in the app or specifically in a particular App ID. You will get the pageName and pageId in the response.

Some of our APIs such as Store Order Listings and Form Builder Inquiries APIs require pageID value in the parameter. In such APIs parameter, you can use the pageId for the respective features obtained in the response using the App Features API.

App Features API endpoint returns the feature details including pageName and pageId for the specified App ID. To access this endpoint, login/signup to Appy Pie Developer account and obtain the required AccessToken key from the Authentication section.

POST https://api.appexecutable.com/V4/webservices/AppFeatures.php

Parameter NameRequiredParameter TypeParameter Description
methodYesStringMethod getAppFeatures is pre-defined.
appIdYesStringApplication ID identifies a specific application on Appy Pie’s platform. You can obtain appID/BID from Appy Pie’s backend.

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 CodeMeaning
400Bad Request -- Your request is invalid.
401Unauthorized -- Your API key is wrong.
403Forbidden -- The method requested is hidden for administrators only.
404Not Found -- The specified method could not be found.
405Method Not Allowed -- You tried to access a method with an invalid method.
406Not Acceptable -- You requested a format that is not json.
410Gone -- Request has been removed from our servers.
429Too Many Requests
500Internal Server Error -- We had a problem with our server. Try again later.
503Service Unavailable -- We are temporarily offline for maintenance. Please try again later.
2032API Key is required
2034Email is required
2036Invalid API Key
2038Provide valid API Key
2039Email already exists
2040Phone already exists
2041Email Invalid
To authorize, use this code:

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		"method":"getAppFeatures",
9		"appId":"axxxxxxxxxx1"
10	 }' \
11	"https://api.appexecutable.com/V4/webservices/AppFeatures.php"

RESPONSE

{
  "status": 1,
  "msg": "success",
  "data": [
    {
      "pageName": "ABOUT",
      "pageId": "about_1xxxxxxxx_xx"
    },
    {
      "pageName": "Website",
      "pageId": "website_1xxxxxxxx_xx"
    },
    {
      "pageName": "Call",
      "pageId": "onetouch_1xxxxxxxxx_xx"
    },
    {
      "pageName": "Inquire",
      "pageId": "formbuilder_1xxxxxxxx_xx"
    },
    {
      "pageName": "CONTACT",
      "pageId": "contact_1xxxxxxxx_xx"
    },
    {
      "pageName": "Folder",
      "pageId": "folder_1xxxxxxxx_xx"
    },
    {
      "pageName": "Store",
      "pageId": "hyperstore_1xxxxxxxx_xx"
    },
    {
      "pageName": "Food Court",
      "pageId": "foodcourt_1xxxxxxxx_xx"
    },
    {
      "pageName": "Form Builder",
      "pageId": "formbuilder_1xxxxxxxx_xx"
    }
  ]
}