List priorities
curl --request GET \
--url https://woes.dev/api/v1/priorities \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/priorities';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://woes.dev/api/v1/priorities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://woes.dev/api/v1/priorities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "<string>",
"hasMore": true,
"priorities": [
{
"object": "<string>",
"id": "<string>",
"label": "<string>",
"enabled": true,
"highlightInQueue": true,
"rank": 123,
"tone": "<string>",
"color": "<string>"
}
]
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "rate_limited",
"error": "Too many API requests. Slow down and try again shortly."
}{
"code": "internal_error",
"error": "The API request could not be completed."
}List priorities
Lists workspace ticket priority definitions.
GET
https://woes.dev
/
api
/
v1
/
priorities
List priorities
curl --request GET \
--url https://woes.dev/api/v1/priorities \
--header 'Authorization: Bearer <token>'const url = 'https://woes.dev/api/v1/priorities';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch(url, options)
.then(res => res.json())
.then(json => console.log(json))
.catch(err => console.error(err));import requests
url = "https://woes.dev/api/v1/priorities"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://woes.dev/api/v1/priorities', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"object": "<string>",
"hasMore": true,
"priorities": [
{
"object": "<string>",
"id": "<string>",
"label": "<string>",
"enabled": true,
"highlightInQueue": true,
"rank": 123,
"tone": "<string>",
"color": "<string>"
}
]
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "rate_limited",
"error": "Too many API requests. Slow down and try again shortly."
}{
"code": "internal_error",
"error": "The API request could not be completed."
}Authorizations
Workspace API key that starts with woesk_. Paste your own key into the docs playground; never expose it in browser code.
Response
Priority definitions.
Allowed value:
"list"Last modified on July 4, 2026
Was this page helpful?
⌘I
