🚧 The Rhombus Developer Documentation is currently in beta. For the official documentation, please visit docs.rhombus.com.
curl --request POST \
--url https://api2.rhombussystems.com/api/org/findIfTeamNameAvailable \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"teamName": "Engineering Team"
}
'{
"available": true
}Get organization team name if it is available
curl --request POST \
--url https://api2.rhombussystems.com/api/org/findIfTeamNameAvailable \
--header 'Content-Type: application/json' \
--header 'x-auth-apikey: <api-key>' \
--header 'x-auth-scheme: <x-auth-scheme>' \
--data '
{
"teamName": "Engineering Team"
}
'{
"available": true
}Your API key for Rhombus.
Authentication scheme indicator ("api-token").
9Request object for checking if a team name is available.
Team name to check availability for
"Engineering Team"
OK
Response object indicating if a team name is available.
Whether the team name is available
true
Was this page helpful?