List Drop Down Options

List Drop Down Options

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

Helps you to fetch List Drop Down Options.

POST https://developer.appypie.com/api/v2/integrations/appypie-connect/dropdown/options

Parameter NameRequiredParameter TypeParameter Description
connectIdYesStringYour Connect ID
nodeIdYesStringYour Node ID will be received from add connect API
functionYesStringThe function name will be received from get detail by trigger/action Id
formFieldYesNoThe form fields will be received from get detail by trigger/action Id

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		"connectId":"YOUR_CONNECT_ID",
9		"nodeId":"YOUR_NODE_ID",
10		"function":"YOUR_FUNCTION_NAME",
11		"formField":YOUR_FORMFIELDS
12	 }' \
13	"https://developer.appypie.com/api/v2/integrations/appypie-connect/dropdown/options"

RESPONSE

{
  "success": true,
  "data": [
    {
      "disp_val": "166**********",
      "value": "166******"
    }
  ]
}