Skip to main content
POST
/
v1
/
issues
Create Issue
curl --request POST \
  --url https://api.example.com/v1/issues \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "body": "",
  "external_id": "<string>",
  "external_url": "<string>",
  "team": "<string>",
  "assignee_id": "<string>",
  "auto_analyze": true
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
title
string
required
Required string length: 1 - 300
source
enum<string>
required
Available options:
jira,
servicenow,
github,
pagerduty,
opsgenie,
linear,
zendesk,
email,
custom_api,
database
severity
enum<string>
required
Available options:
p1,
p2,
p3,
p4
body
string
default:""
Maximum string length: 20000
external_id
string | null
Maximum string length: 128
external_url
string | null
team
string | null
assignee_id
string | null
auto_analyze
boolean
default:true

Response

Successful Response

The response is of type Response Create Issue V1 Issues Post · object.