Check Custom URL Availability
GET/organizations/check-url/:customUrl
Check if a custom URL is available for organization registration. This endpoint is publicly accessible (no auth required) to allow URL validation during the registration flow before org creation.
Request
Path Parameters
customUrl stringrequired
The custom URL to check (path parameter)
Responses
- 200
- Error 4xx
- application/json
- Schema
- Example (from schema)
- Example
Schema
available booleanrequired
Whether the URL is available
customUrl stringrequired
The URL that was checked
{
"available": true,
"customUrl": "string"
}
{
"available": true,
"customUrl": "my-company"
}
Invalid custom URL format
- application/json
- Schema
- Example (from schema)
- Example
Schema
ValidationError required
Invalid custom URL format
{}
{}
Loading...
Was this page helpful?