List Records from Case Management Table
GET/workspace/:ws_id/case_management/table/:table
Retrieve a list of records from a given case management table. For the list of out-of-the-box tables, visit our Case Management documentation.
Request
Path Parameters
ws_id stringrequired
Workspace ID
table stringrequired
Table name
Query Parameters
q stringrequired
For the RQL query syntax, visit our RQL query documentation in the RQL Format
tab
Responses
- 200
- 400
OK
- */*
- Schema
- Example (from schema)
Schema
limit integer
offset integer
results
total integer
{
"limit": 0,
"offset": 0,
"results": {},
"total": 0
}
Failed to list records
- */*
- Schema
- Example (from schema)
Schema
data
details string
identifier string
message string
status integer
user_error
{
"data": {},
"details": "string",
"identifier": "string",
"message": "string",
"status": 404,
"user_error": {}
}
Loading...