Skip to content

List custom object types

GET/v1/objects

Returns all custom object types available to the caller.

ReturnsExpand Collapse
ObjectListDefinitionsResponse object { data }
data: array of object { label, objectType }

All object types available to the caller.

label: string

Human-readable display name.

objectType: string

The slug used to reference this object type in the API.

List custom object types

curl https://api.lightfield.app/v1/objects \
    -H 'Lightfield-Version: 2026-03-01' \
    -H "Authorization: Bearer $API_KEY"
{
  "data": [
    {
      "label": "label",
      "objectType": "objectType"
    }
  ]
}
Returns Examples
{
  "data": [
    {
      "label": "label",
      "objectType": "objectType"
    }
  ]
}