FlxpointAPI Help CenterBeta

Get Connections

gethttps://api.flxpoint.com/connections

Use this when you want to pull connection data through the API.

🔑 X-API-TOKEN⏱ 2 req/sToken: Account · Source · Channel

This page explains the endpoint. To send a live test request, use the interactive tester in Stoplight or your own Postman / HTTP client.

Endpoint to retrieve back a list of Connections.

Requires Account-level privileges.

Request

Example request

get/connections
curl -X GET "https://api.flxpoint.com/connections" \
  -H "Accept: application/json" \
  -H "X-API-TOKEN: YOUR_TOKEN"

Responses

200OKapplication/json
array[Connection]
idinteger
connectionTypestring
connectionTypeIdinteger
connectionTypeNamestring
requiresConnectionToTestbooleandeprecated
namestring
configsarray[ConnectionConfig]
handlestring
namestring
requiredboolean
editableboolean
dataTypestring
defaultValuestring
optionsarray[ConnectionConfigOption]
valuestring
labelstring
advancedboolean
valuestring
hiddenboolean
descriptionstring
sortOrderinteger
Example response
[
  {
    "id": 0,
    "connectionType": "string",
    "connectionTypeId": 0,
    "connectionTypeName": "string",
    "requiresConnectionToTest": true,
    "name": "string",
    "configs": [
      {
        "handle": "string",
        "name": "string",
        "required": true,
        "editable": true,
        "dataType": "string",
        "defaultValue": "string",
        "options": [
          null
        ],
        "advanced": true,
        "value": "string",
        "hidden": true,
        "description": "string",
        "sortOrder": 0
      }
    ]
  }
]
401Unauthorized

No schema documented for this status.

OpenAPI fragment
{
  "get": {
    "summary": "Get Connections",
    "description": "Endpoint to retrieve back a list of Connections. \n\nRequires Account-level privileges. ",
    "parameters": [],
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/Connection"
              }
            }
          }
        }
      },
      "401": {
        "description": "Unauthorized"
      }
    }
  }
}
Ready to run it? Send the curl from your terminal or Postman, or use the interactive tester in Stoplight.Open in Stoplight