Portfolio Ticket Report Fields
To fetch metadata of Portfolio Ticket Report object send a GET request to:
https://api.assembla.com/v1/meta/portfolio_ticket_reports.(json|xml)
example. request json with curl utility:
curl -H "Authorization: bearer _token" https://api.assembla.com/v1/meta/portfolio_ticket_reports.json
example. request xml with curl utility:
curl -H "Authorization: bearer _token" https://api.assembla.com/v1/meta/portfolio_ticket_reports.xml
table below is the list of fields contained in the response, this list will be properly formatted to json or xml as requested.
Fields
| Param | Data type | Access | Description |
|---|---|---|---|
| id | integer | read | Ticket Report ID |
| title | string | read | Report title |
| shared | boolean | read | If true, the ticket report is visible to team members |
Validations
| Field | Validator | Description |
|---|---|---|
| title | length validator | Report title must be less than 80 characters. |
| title | presence validator | Report title should be present. |
| title | uniqueness validator | Report title should be unique in scope of a space, case sensitive. |