Skip to main content
POST
/
api
/
help
/
openTickets
Get open support tickets for a client organization
curl --request POST \
  --url https://api2.rhombussystems.com/api/help/openTickets \
  --header 'Content-Type: application/json' \
  --header 'x-auth-apikey: <api-key>' \
  --header 'x-auth-scheme: <x-auth-scheme>' \
  --data '
{
  "pageNumber": 123
}
'
{
  "currentPage": 1,
  "error": true,
  "errorMsg": "<string>",
  "hasNexPage": true,
  "tickets": [
    {
      "createdAt": "2024-01-15T10:30:00Z",
      "id": 12345,
      "status": "Open",
      "subject": "Camera connectivity issue"
    }
  ],
  "totalTickets": 123,
  "warningMsg": "<string>"
}

Authorizations

x-auth-apikey
string
header
required

Your API key for Rhombus.

Headers

x-auth-scheme
string
default:api-token
required

Authentication scheme indicator ("api-token").

Required string length: 9

Body

application/json

Request object for retrieving open support tickets with pagination.

pageNumber
integer<int32> | null

Page number used for paginated response. If empty, the search will return the first page.

Response

200 - application/json

OK

Response object containing open support tickets with pagination information.

currentPage
integer<int32> | null

Current page number in the paginated response

Example:

1

error
boolean | null
errorMsg
string | null
hasNexPage
boolean | null

True if there is a next page, false otherwise

tickets
object[] | null

List of open support tickets

totalTickets
integer<int32> | null

Total number of tickets, not limited to the current page

warningMsg
string | null