POST '/api/v2/tickets' -d {
"ticket": {
"title": "second ticket",
"tags": ["tag1","tag2"],
"small_summary": "text",
"content": "text",
"status": "In Progress"
},
"restricted_accounts": ["account_name_1", "account_name_2"]
}
| Param name | Description |
|---|---|
|
title
required |
The title of the ticket Validations:
|
|
tags
required |
The tags for the ticket Validations:
|
|
small_summary
required |
The summary of the ticket Validations:
|
|
content
required |
The content of the ticket Validations:
|
|
status
optional |
The status of the ticket: should be opened or pending Validations:
|
|
restricted_accounts
optional |
The names of the accounts when the ticket has restricted accounts Validations:
|