Skip to main content
POST
/
collections
/
{collectionId}
/
tags
Creates a new tag for a collection
curl --request POST \
  --url https://api.inorbit.ai/collections/{collectionId}/tags \
  --header 'Content-Type: application/json' \
  --header 'x-auth-inorbit-app-key: <api-key>' \
  --data '
{
  "name": "<string>",
  "description": "<string>"
}
'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "collectionId": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://inorbitinc.mintlify.app/llms.txt

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

Authorizations

x-auth-inorbit-app-key
string
header
required

InOrbit appKey authenticates API requests using a token.

You can obtain your appKey in the Authentication docs.

Path Parameters

collectionId
string
required

The collection id

Body

application/json

Creates a new tag for a collection

A tag that can be used to organize robots in a collection

name
string
required

Tag name

description
string

Tag description

Response

The just created tag

A tag that can be used to organize robots in a collection

id
string
required

Unique identifier of the tag

name
string
required

Tag name

description
string
required

Tag description

collectionId
string

Id of the collection this tag belongs to