GET
/
v1
/
endpoints
curl --request GET \
  --url https://api.formizee.com/v1/endpoints \
  --header 'Authorization: Bearer <token>'
{
  "_metadata": {
    "page": 1,
    "totalPages": 2,
    "itemsPerPage": 100
  },
  "endpoints": [
    {
      "id": "enp_4VjHrJoEwAFC6itz8oUBW9NW2bia",
      "workspaceId": "ws_4VjHrJoEwAFC6itz8oUBW9NW2bia",
      "slug": "my-endpoint",
      "name": "My Endpoint",
      "isEnabled": true,
      "emailNotifications": false,
      "redirectUrl": "https://example.com/thanks-you",
      "targetEmails": [
        "[email protected]",
        "[email protected]"
      ],
      "icon": "bolt",
      "color": "pink"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
number
default:
1
Required range: x >= 1
limit
number
default:
100
Required range: x >= 1

Response

200
application/json
Retrieve a list of endpoints
_metadata
object
required
endpoints
object[]
required