Tickets
Manage and tickets/requests
List tickets. Requires the 'tickets:read' scope.
Authorizations
Query parameters
limitnumber · min: 1 · max: 1000OptionalDefault:
The number of results to return
100
offsetnumberOptionalDefault:
The number of results to skip
0
Responses
200
Response for status 200
application/json
500
An unknown error occurred, trying again might help.
application/json
get
GET /v1/tickets HTTP/1.1
Host: api.tryopine.com
X-API-Key: YOUR_API_KEY
Accept: */*
{
"items": [
{
"type": "BUG",
"state": "OPEN",
"id": 1,
"createdAt": "2025-08-30T18:48:14.808Z",
"updatedAt": "2025-08-30T18:48:14.808Z",
"closedAt": "2025-08-30T18:48:14.808Z",
"organizationId": 1,
"createdByUserId": 1,
"title": "text",
"description": "text",
"vendorEntityId": "text",
"vendorEntityKey": "text",
"integrationInstallationId": 1,
"targetDueDate": "2025-08-30T18:48:14.808Z",
"linkedDeals": [
{
"id": 1,
"evaluationId": 1,
"name": "text",
"priority": "BLOCKER",
"sharedWithBuyer": true
}
],
"dealAmountSum": 1,
"vendorEntityUrl": "text"
}
],
"limit": 1,
"offset": 1,
"totalCount": 1
}
Last updated