This endpoint retrieves a list of requests. The client must send X-Api-Key and Token-Key in the HTTP header.
/requestsGETX-Api-Key (string, required): API key (provided in the HTTP header).Token-Key (string, required): Token used for authorization (provided in the HTTP header).page (integer, required, default: 0): Page number.owner (enum, required, default: all):
all: Retrieves all requests.mine: Retrieves only the user's requests.types (string, required): Comma-separated request types (e.g., "1,3,5,6").isopen (boolean, optional, default: true): Specifies whether to retrieve open requests.Example response for a successful request:
{
"statusCode": 200,
"statusMessage": "Success",
"info": {
"activePage": 1,
"pageCount": 1,
"recordCount": 1,
"tmpint": 0,
"tmpstr": "string"
},
"records": [
{
"reqid": 1,
"reqcreatedate": "2019-08-24T14:15:22.123Z",
"reqanswerdate": "2019-08-24T14:15:22.123Z",
"reqdonedate": "2019-08-24T14:15:22.123Z",
"reqsuaid": 0,
"requseid": -2147483648,
"reqstatus": "0",
"reqtype": "0",
"reqordid": "0",
"reqimportant": "0",
"reqlastupdate": "2019-08-24T14:15:22.123Z"
}
]
}