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 GET \
--url https://{instance}.omniapp.co/api/v1/labels/{labelName} \
--header 'Authorization: Bearer <token>'{
"name": "Production",
"verified": true,
"homepage": true,
"usage_count": 12,
"color": "#000000",
"description": "Documents verified and in prod"
}Retrieve a single label by name.
curl --request GET \
--url https://{instance}.omniapp.co/api/v1/labels/{labelName} \
--header 'Authorization: Bearer <token>'{
"name": "Production",
"verified": true,
"homepage": true,
"usage_count": 12,
"color": "#000000",
"description": "Documents verified and in prod"
}Can be either an Organization API Key or Personal Access Token (PAT).
Include in the Authorization header as: Bearer YOUR_TOKEN
The label name. Lookup is case-insensitive.
URL-encode special characters (e.g., In%20Review for "In Review").
Label details
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?