Need help? Get answers from the docs with Omni's in-app AI! Log in to your Omni instance and open the Omni Agent in the sidebar.
curl --request POST \
--url https://{instance}.omniapp.co/api/v1/labels \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Dev",
"color": "#0366d6",
"description": "Documents based on dev schemas"
}
'{
"name": "Dev",
"verified": true,
"homepage": true,
"usage_count": 0,
"color": "#0366d6",
"description": "Documents based on dev schemas"
}Create a new label in the organization.
Any user can create basic labels, but Organization Admin permissions are required to:
verified: true)homepage: true)curl --request POST \
--url https://{instance}.omniapp.co/api/v1/labels \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Dev",
"color": "#0366d6",
"description": "Documents based on dev schemas"
}
'{
"name": "Dev",
"verified": true,
"homepage": true,
"usage_count": 0,
"color": "#0366d6",
"description": "Documents based on dev schemas"
}Documentation Index
Fetch the complete documentation index at: https://docs.omni.co/llms.txt
Use this file to discover all available pages before exploring further.
Can be either an Organization API Key or Personal Access Token (PAT).
Include in the Authorization header as: Bearer YOUR_TOKEN
Requires an Organization API key. Optional user ID that attributes the action to the specified user.
Label name. Must be 2-25 characters.
Names are case-insensitive: "Production" and "production" are considered the same.
2 - 25Hex color for the label
9"#0366d6"
Description of the label
500"Documents based on dev schemas"
Requires Organization Admin permissions. If true, documents with this label will be marked as verified/curated.
Requires Organization Admin permissions. If true, documents with this label will display on the instance's Homepage.
Label created successfully
A label for organizing and categorizing documents and folders
The label name (2-25 characters).
Names are case-insensitive: "Production" and "production" are considered the same.
"Production"
Whether the label is verified/curated
true
Whether the label appears on the organization homepage
false
Total number of documents and folders using this label
12
Hex color for the label
9"#0366d6"
Description of the label
500"Documents based on dev schemas"
Was this page helpful?