Axiomatic

Team

Manage team members, send invitations, update roles, and remove access. All team actions are logged to the control plane audit trail.

List team members and pending invites

GET
/api/team
x-api-key<token>

API key for programmatic access

In: header

Response Body

application/json

application/json

curl -X GET "https://app.axiomatic.software/api/team"
{
  "members": [
    {}
  ],
  "invites": [
    {}
  ]
}
{
  "error": "string"
}

Invite, update role, or remove team member

POST
/api/team
x-api-key<token>

API key for programmatic access

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

curl -X POST "https://app.axiomatic.software/api/team" \  -H "Content-Type: application/json" \  -d '{    "action": "invite",    "email": "user@example.com",    "role": "ADMIN"  }'
{}
{
  "error": "string"
}
{
  "error": "string"
}