Skip to main content
POST
/
api
/
org
/
findIfTeamNameAvailable
Find if team name 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
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for checking if a team name is available.

teamName
string | null

Team name to check availability for

Example:

"Engineering Team"

Response

200 - application/json

OK

Response object indicating if a team name is available.

available
boolean | null

Whether the team name is available

Example:

true