v1

latestOpenAPI 3.0.12026-07-26272332.0 KB
Records

Get the list of records

get/{recordType}/{alias}

Path parameters

recordTypestring string required

'apps', 'elements', 'tasks', or 'transactions'

aliasstring string required

The application alias

Query parameters

firstinteger

The number of elements to retrieve after the 'after' cursor location

afterstring

The starting cursor to begin searching, defaults to the beginning of the list

lastinteger

The number of elements to retrieve before the 'before' cursor location

beforestring

The starting cursor to begin searching, defaults to the end of the list

filterstring string

An RSQL filter string.

Response

Ok

totalinteger

Example response

{
  "items": [
    {
      "data": {
        "Severity": "High",
        "Status": "In Progress",
        "Assignee": "elroy@elementum.com",
        "Created on": "2020-04-04",
        "Title": "Order ID 23456 Logistics CHH Warehouse",
        "Description": "Complaint received for 3 pallets of product that was shipped on Bad Pallets."
      }
    }
  ]
}