Skip to main content
POST
/
core
/
invite-links
Create Invite Link
curl --request POST \
  --url https://api.integrations.commenda.io/v4/core/invite-links \
  --header 'Content-Type: application/json' \
  --header 'api_key: <api-key>' \
  --data '
{
  "integration": "NETSUITE",
  "companyName": "Acme Corp",
  "syncFrom": "2026-01-01T00:00:00.000Z"
}
'
{
  "data": {
    "inviteLink": {
      "id": 497,
      "inviteLinkId": "eae523af-4f5f-4487-9ffc-d8e6c267c781",
      "companyId": 497
    }
  },
  "request_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
}

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.

Create an invite link and provision a company.

Request Body

FieldTypeRequiredDescription
integrationenumYesIntegration type (e.g. NETSUITE, STRIPE).
companyNamestringYesDisplay name for the provisioned company.
syncFromstringNoHistorical sync start date (ISO 8601).
syncConfigarrayNoPer-model sync config overrides.

Response

Returns 201 Created with { data: { inviteLink: { id, inviteLinkId, companyId } }, request_id }.

Authorizations

api_key
string
header
required

Body

application/json
integration
enum<string>
required

V4-supported integration types only.

Available options:
STRIPE,
NETSUITE,
XERO,
ZOHO_BOOKS,
WAFEQ,
QUICKBOOKS,
QUICKBOOKS_SANDBOX,
BIG_COMMERCE,
WOO_COMMERCE,
OODOO_ACCOUNTING,
SHOPIFY,
FRESHBOOKS
companyName
string
required

Display name for the provisioned company.

syncFrom
string<date-time>

Historical sync start date (ISO 8601).

syncConfig
WriteSyncConfigModel · object[]

Response

Invite link created.

request_id
string
required
data
V4CreateInviteLinkResponse · object
required