Skip to main content
POST
/
superadmin
/
tenants
/
{id}
/
reject
Reject a tenant alpha application
curl --request POST \
  --url https://api.engagefabric.com/superadmin/tenants/{id}/reject \
  --header 'Content-Type: application/json' \
  --data '
{
  "reason": "We are currently only accepting applications from gaming companies",
  "internalNote": "Suspicious email domain"
}
'
{
  "success": true,
  "message": "Tenant application rejected",
  "tenantId": "550e8400-e29b-41d4-a716-446655440000",
  "status": "REJECTED",
  "rejectedAt": "2025-12-04T10:30:00.000Z"
}

Path Parameters

id
string
required

Body

application/json
reason
string
required

Reason for rejecting the application

Required string length: 10 - 500
Example:

"We are currently only accepting applications from gaming companies"

internalNote
string

Internal note (not shared with user)

Maximum string length: 500
Example:

"Suspicious email domain"

Response

200 - application/json
success
boolean
required
Example:

true

message
string
required
Example:

"Tenant application rejected"

tenantId
string
required
Example:

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

status
string
required
Example:

"REJECTED"

rejectedAt
string<date-time>
required
Example:

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