Skip to main content
GET
/
v2
/
records
/
{id}
Retrieve a Record
curl --request GET \
  --url https://api.fructu.co/v2/records/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "object": "<string>",
  "lists": [
    "<string>"
  ],
  "fields": {
    "{key}": "<string>"
  },
  "assigned_to": "<string>",
  "created_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

Record's unique id

Response

200 - application/json
id
string
required

Unique identifier of the record

object
string
required

ID of the Object this record belongs to

lists
string[]
required

Array of List IDs this record belongs to

fields
object
required

Record fields values

assigned_to
string | null
required

ID of the User assigned to this record

created_at
string<date-time>
required

Creation date and time (ISO 8601)