LynceaAPI

Invite member

POST
/api/v1/tenant-members
AuthorizationBearer <token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.monitoring.crahe-arthur.com/api/v1/tenant-members" \  -H "Content-Type: application/json" \  -d '{    "email": "alice@corp.example",    "orgRole": "admin"  }'
{
  "invitation": {
    "id": "string",
    "tenantId": {},
    "email": "string",
    "orgRole": {},
    "status": {},
    "invitedByUserId": {},
    "acceptedUserId": {},
    "expiresAt": "string",
    "respondedAt": "string",
    "createdAt": "string",
    "updatedAt": "string"
  },
  "renewed": true
}