Skip to content
AbloAblo
Esc
navigateopen⌘Jpreview

Retrieve a record

GET/v1/models/{model}/{id}
Path parameters
modelstringrequired
Any model in your pushed schema. `task` is the running example.
idstringrequired
Responses
200The row
dataTask
A `task` record as returned by reads.
Show properties
idstring
Server-assigned row id.
numbernumber | any
Show properties
Any of:
number
number
any
any
titlestringrequired
descriptionstring | any
Show properties
Any of:
string
string
any
any
statusstringrequired
default: "todo"
prioritystringrequired
default: "medium"
projectIdstring | any
Show properties
Any of:
string
string
any
any
teamIdstring | any
Show properties
Any of:
string
string
any
any
chatIdstring | any
Show properties
Any of:
string
string
any
any
parentIdstring | any
Show properties
Any of:
string
string
any
any
startDatestring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
endDatestring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
dueDatestring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
completedAtstring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
ordernumberrequired
default: 0
orderKeystring | any
Show properties
Any of:
string
string
any
any
metadatastring | any
Show properties
Any of:
string
string
any
any
archivedAtstring<date-time> | any
Show properties
Any of:
string<date-time>
string<date-time>
any
any
updatedBystring | any
Show properties
Any of:
string
string
any
any
stampinteger
Request
curl -X GET "https://api.abloatai.com/api/v1/models/task/string"
Response
{
  "data": {
    "id": "string",
    "number": 0,
    "title": "string",
    "description": "string",
    "status": "todo",
    "priority": "medium",
    "projectId": "string",
    "teamId": "string",
    "chatId": "string",
    "parentId": "string",
    "startDate": "2024-01-01T00:00:00Z",
    "endDate": "2024-01-01T00:00:00Z",
    "dueDate": "2024-01-01T00:00:00Z",
    "completedAt": "2024-01-01T00:00:00Z",
    "order": 0,
    "orderKey": "string",
    "metadata": "string",
    "archivedAt": "2024-01-01T00:00:00Z",
    "updatedBy": "string"
  },
  "stamp": 0
}