Skip to main content

Quickstart

1. Create partner account

  1. Open https://partners.nautix.io/register
  2. Register your organization and verify email
  3. Log in at https://partners.nautix.io/login

2. Create app and sandbox credential

  1. Open the Apps workspace
  2. Create an app
  3. Issue a SANDBOX credential
  4. Save the raw key once shown

3. Call partner APIs

Use your issued key on third-party endpoints:

curl -X POST "https://api.nautix.io/api/thirdparty/v1/partner/onboard" \
-H "API-KEY: sk_xxx" \
-H "Content-Type: application/json" \
-d '{
"externalUserId": "ext-1001",
"fullName": "Jane Partner",
"email": "jane@example.com",
"companyName": "Acme Ltd"
}'

4. Configure webhook endpoints

After onboarding, create webhook endpoints with webhook scopes:

webhooks:read,webhooks:write

Continue with Webhooks.