cURL
curl --request POST \ --url https://api.example.com/v1/tenants \ --header 'Content-Type: application/json' \ --header 'X-Access-Key: <x-access-key>' \ --header 'X-Signature: <x-signature>' \ --header 'X-Timestamp: <x-timestamp>' \ --data ' { "tenantName": "<string>", "adminEmail": "<string>", "plan": "<string>" } '
{ "tenant": { "tenantId": "<string>", "tenantName": "<string>", "status": "<string>", "plan": "<string>", "createdAt": "<string>" } }
Create a new tenant organization
starter
growth
enterprise
Show properties
curl -X POST https://api.axonvault.io/v1/tenants \ -H "X-Access-Key: ak_live_abc123" \ -H "X-Signature: sha256=..." \ -H "X-Timestamp: 2024-01-15T10:30:00Z" \ -H "Content-Type: application/json" \ -d '{ "tenantName": "Acme Corp", "adminEmail": "[email protected]", "plan": "growth" }'
{ "tenant": { "tenantId": "ten_abc123", "tenantName": "Acme Corp", "status": "active", "plan": "growth", "createdAt": "2024-01-15T10:30:00Z" } }