Quickstart
1. Create partner account
- Open
https://partners.nautix.io/register - Register your organization and verify email
- Log in at
https://partners.nautix.io/login
2. Create app and sandbox credential
- Open the Apps workspace
- Create an app
- Issue a
SANDBOXcredential - 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.