FlxpointAPI Help CenterBeta

Get Connection Types

gethttps://api.flxpoint.com/connections/types

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 connection types.

Requires Account-level privileges.

Request

Example request

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

Responses

200OKapplication/json
array[ConnectionType]
idinteger
namestring
handlestring
Example response
[
  {
    "id": 0,
    "name": "string",
    "handle": "string"
  }
]
401Unauthorized

No schema documented for this status.

OpenAPI fragment
{
  "get": {
    "summary": "Get Connection Types",
    "description": "Endpoint to retrieve back a list of connection types. \n\nRequires Account-level privileges. ",
    "parameters": [],
    "responses": {
      "200": {
        "description": "OK",
        "content": {
          "application/json": {
            "schema": {
              "type": "array",
              "items": {
                "$ref": "#/components/schemas/ConnectionType"
              }
            }
          }
        }
      },
      "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