Aurion Docs
Api

Invite Tenant User

POST
/api/v1/tenant/users/invitations
AuthorizationBearer <token>

In: header

Request Body

application/json

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/tenant/users/invitations" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "role": "tenant_owner"  }'
{
  "email_sent": true,
  "expires_at": "string",
  "invitation_id": "string",
  "invite_url": "string"
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}