Create issue
curl --request POST \
--url https://woes.dev/api/v1/issues \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"subject": "OAuth redirect URI mismatch"
}
'const url = 'https://woes.dev/api/v1/issues';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({subject: 'OAuth redirect URI mismatch'})
};
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/issues"
payload = { "subject": "OAuth redirect URI mismatch" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({subject: 'OAuth redirect URI mismatch'})
};
fetch('https://woes.dev/api/v1/issues', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"issue": {
"object": "<string>",
"id": "<string>",
"subject": "<string>",
"preview": "<string>",
"description": "<string>",
"priority": "<string>",
"tags": [
"<string>"
],
"customer": {
"name": "<string>",
"email": "jsmith@example.com",
"company": "<string>"
},
"source": {
"channel": "<string>",
"conversationId": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"lastActivityAt": "2023-11-07T05:31:56Z",
"closedAt": "2023-11-07T05:31:56Z"
}
}{
"code": "invalid_request",
"error": "Request body is invalid."
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "not_found",
"error": "Record not found."
}{
"code": "conflict",
"error": "A record with this identifier already exists."
}{
"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."
}Create issue
Creates a workspace-scoped support issue.
POST
https://woes.dev
/
api
/
v1
/
issues
Create issue
curl --request POST \
--url https://woes.dev/api/v1/issues \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"subject": "OAuth redirect URI mismatch"
}
'const url = 'https://woes.dev/api/v1/issues';
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({subject: 'OAuth redirect URI mismatch'})
};
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/issues"
payload = { "subject": "OAuth redirect URI mismatch" }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({subject: 'OAuth redirect URI mismatch'})
};
fetch('https://woes.dev/api/v1/issues', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"issue": {
"object": "<string>",
"id": "<string>",
"subject": "<string>",
"preview": "<string>",
"description": "<string>",
"priority": "<string>",
"tags": [
"<string>"
],
"customer": {
"name": "<string>",
"email": "jsmith@example.com",
"company": "<string>"
},
"source": {
"channel": "<string>",
"conversationId": "<string>"
},
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"lastActivityAt": "2023-11-07T05:31:56Z",
"closedAt": "2023-11-07T05:31:56Z"
}
}{
"code": "invalid_request",
"error": "Request body is invalid."
}{
"code": "unauthorized",
"error": "A valid workspace API key is required."
}{
"code": "insufficient_scope",
"error": "This API key is missing the required scope."
}{
"code": "not_found",
"error": "Record not found."
}{
"code": "conflict",
"error": "A record with this identifier already exists."
}{
"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.
Body
application/json
Required string length:
1 - 180Maximum string length:
8000Required string length:
1 - 32Required string length:
1 - 80Available options:
new, on_you, on_customer, on_hold, closed Maximum array length:
25Required string length:
1 - 64Response
Issue created.
Hide child attributes
Hide child attributes
Allowed value:
"issue"Available options:
new, on_you, on_customer, on_hold, closed Last modified on July 4, 2026
Was this page helpful?
⌘I
