Skip to main content
GET
/
core
/
invite-links
List Invite Links
curl --request GET \
  --url https://api.integrations.commenda.io/v4/core/invite-links \
  --header 'api_key: <api-key>'
{
  "data": {
    "inviteLinks": [
      {
        "id": 497,
        "inviteLinkId": "eae523af-4f5f-4487-9ffc-d8e6c267c781",
        "companyId": 497,
        "integration": "WAFEQ",
        "integrationCategory": "ACCOUNTING",
        "syncFrom": null,
        "createdAt": "2026-05-21T19:59:03.373Z"
      }
    ],
    "count": 5,
    "next": 497
  },
  "request_id": "26702fd6-fd03-4ff8-8944-122243d3e742"
}

Documentation Index

Fetch the complete documentation index at: https://integrations.docs.commenda.io/llms.txt

Use this file to discover all available pages before exploring further.

List invite links for your organization. Results are ordered by creation time (newest first) and paginated with a numeric cursor.

Query Parameters

ParameterTypeDefaultDescription
limitinteger50Page size (max 100).
cursorintegerReturn invite links after this invite link id.

Response

Returns { data: { inviteLinks, count, next }, request_id }.
FieldTypeDescription
inviteLinksarrayInvite link objects. See overview.
countintegerTotal invite links for the organization (not just this page).
nextinteger | nullCursor for the next page (last id returned), or null.

Authorizations

api_key
string
header
required

Query Parameters

limit
integer

Maximum number of invite links to return. Default 50, max 100.

Required range: 1 <= x <= 100
cursor
integer

Return invite links after this invite link id.

Required range: x >= 1

Response

Paginated invite link list.

request_id
string
required
data
V4ListInviteLinksResponse · object
required