orgUsernameAvailable

This query loads the information about the availability of an organization username.

General Pattern

query{
	orgUsernameAvailable(organizationID: "organization-id", username: "String"){
  	field_1
    field_2 {
       nested_field_1
       ...
    }
  }
}

Sample Query

query{
 orgUsernameAvailable(organizationID: "a1dc174d-abf4-47d3-be3c-9281c6eba456", username: "79a18c5c-15ee-4451-b670-e7fde42223db")
}

Sample Response

{
  "data": {
    "orgUsernameAvailable": true
  }
}

Arguments

NameTypeDescriptionRequired
organizationStringThe name of the organization.Yes
usernameStringThe username of the organization.Yes

Fields

NameTypeDescription
N/ABooleanThe confirmation whether the organization username is available.

Example

Try the available username using organization ID and username ID: