Skip to main content
POST
/
v2
/
skills:checkDisplayNameAvailability
Check skill display name availability
curl --request POST \
  --url https://api.orq.ai/v2/skills:checkDisplayNameAvailability \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "display_name": "<string>",
  "skill_id": "<string>"
}
'
{
  "available": true,
  "conflicting_skill_id": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.orq.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
display_name
string

Display name to validate against the workspace uniqueness rules.

skill_id
string

Skill to exclude from the check. Set when renaming so the skill's current name does not conflict with itself; leave empty when creating.

Response

200 - application/json

OK

available
boolean

Whether the display name is available within the workspace.

conflicting_skill_id
string

ID of the skill currently using this display name. Empty when available is true.