cURL
curl --request POST \ --url https://api.example.com/v1/tenants/{tenantId}/projects \ --header 'Content-Type: application/json' \ --header 'X-Access-Key: <x-access-key>' \ --header 'X-Signature: <x-signature>' \ --header 'X-Timestamp: <x-timestamp>' \ --data ' { "projectName": "<string>", "environment": "<string>", "description": "<string>" } '
{ "project": { "projectId": "<string>", "tenantId": "<string>", "projectName": "<string>", "environment": "<string>", "status": "<string>", "createdAt": "<string>" } }
Create a new project within a tenant
development
staging
production
Show properties
curl -X POST https://api.axonvault.io/v1/tenants/ten_abc123/projects \ -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 '{ "projectName": "Mobile App", "environment": "production", "description": "Production mobile application" }'
{ "project": { "projectId": "proj_abc123", "tenantId": "ten_abc123", "projectName": "Mobile App", "environment": "production", "status": "active", "createdAt": "2024-01-15T10:30:00Z" } }