Truztcube Docs
API ReferenceOrganisation Management

Create a new invite (Admin only)

Generates a new invite link and sends it to the provided email

POST/v1/organisation-management
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://example.com/v1/organisation-management" \  -H "Content-Type: application/json" \  -d '{    "email": "user@example.com",    "signupType": "STANDALONE"  }'
{  "success": true,  "statusCode": 200,  "message": "Request processed successfully",  "timestamp": "2025-10-20T16:30:00.000Z",  "path": "/v1/auth/register",  "data": {    "message": "Invite created successfully. Link sent to email."  }}