Skip to main content
POST
/
superadmin
/
tenants
/
{id}
/
approve
Approve a tenant for alpha access
curl --request POST \
  --url https://api.engagefabric.com/superadmin/tenants/{id}/approve \
  --header 'Content-Type: application/json' \
  --data '
{
  "note": "Great use case, approved for full access"
}
'
{
  "success": true,
  "message": "Tenant approved successfully",
  "tenantId": "550e8400-e29b-41d4-a716-446655440000",
  "status": "APPROVED",
  "approvedAt": "2025-12-04T10:30:00.000Z"
}

Path Parameters

id
string
required

Body

application/json
note
string

Optional note for the approval

Maximum string length: 500
Example:

"Great use case, approved for full access"

Response

200 - application/json
success
boolean
required
Example:

true

message
string
required
Example:

"Tenant approved successfully"

tenantId
string
required
Example:

"550e8400-e29b-41d4-a716-446655440000"

status
string
required
Example:

"APPROVED"

approvedAt
string<date-time>
required
Example:

"2025-12-04T10:30:00.000Z"