Validate organization slug availability
Required Permission: base.organization.management.checkSlug
Validates whether proposed organization slug identifier is available for use, not reserved by system, and conforms to naming conventions before creation.
Request
authorization
Authorization: Bearer <token>
Responses
application/json
{
"status": true,
"data": {
"valid": true,
"reason": ""
}
}
application/json
{
"status": false,
"error": {
"code": 4002,
"message": "No auth token"
}
}
application/json
{
"status": false,
"error": {
"code": 3001,
"message": "Entity not found"
}
}