{
"opencollection": "1.0.0",
"info": {
"name": "API Reference Accounts Objects API",
"version": "0.0.0"
},
"items": [
{
"info": {
"name": "Objects",
"type": "folder"
},
"items": [
{
"info": {
"name": "Create a custom object record",
"type": "http"
},
"http": {
"method": "POST",
"url": "{{baseUrl}}/v1/objects/:entitySlug/values",
"headers": [
{
"name": "Lightfield-Version",
"value": "2026-03-01"
}
],
"params": [
{
"name": "entitySlug",
"value": "",
"type": "path"
}
],
"body": {
"type": "json",
"data": "{}"
},
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"docs": "Creates a new record for the specified custom object type."
},
{
"info": {
"name": "Get a custom object record",
"type": "http"
},
"http": {
"method": "GET",
"url": "{{baseUrl}}/v1/objects/:entitySlug/values/:id",
"headers": [
{
"name": "Lightfield-Version",
"value": "2026-03-01"
}
],
"params": [
{
"name": "entitySlug",
"value": "",
"type": "path"
},
{
"name": "id",
"value": "",
"type": "path"
}
],
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"docs": "Retrieves a single record by ID for the specified custom object type."
},
{
"info": {
"name": "Update a custom object record",
"type": "http"
},
"http": {
"method": "POST",
"url": "{{baseUrl}}/v1/objects/:entitySlug/values/:id",
"headers": [
{
"name": "Lightfield-Version",
"value": "2026-03-01"
}
],
"params": [
{
"name": "entitySlug",
"value": "",
"type": "path"
},
{
"name": "id",
"value": "",
"type": "path"
}
],
"body": {
"type": "json",
"data": "{}"
},
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"docs": "Updates an existing record by ID for the specified custom object type. Only included fields and relationships are modified."
},
{
"info": {
"name": "List custom object records",
"type": "http"
},
"http": {
"method": "GET",
"url": "{{baseUrl}}/v1/objects/:entitySlug",
"headers": [
{
"name": "Lightfield-Version",
"value": "2026-03-01"
}
],
"params": [
{
"name": "entitySlug",
"value": "",
"type": "path"
},
{
"name": "offset",
"value": "",
"type": "query"
},
{
"name": "limit",
"value": "",
"type": "query"
}
],
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"docs": "Returns a paginated list of records for the specified custom object type. Use `offset` and `limit` to paginate through results, and `$field` query parameters to filter. See [List endpoints](/using-the-api/list-endpoints/) for more information about [pagination](/using-the-api/list-endpoints/#pagination) and [filtering](/using-the-api/list-endpoints/#filtering)."
},
{
"info": {
"name": "Get definitions for a custom object type",
"type": "http"
},
"http": {
"method": "GET",
"url": "{{baseUrl}}/v1/objects/:entitySlug/definitions",
"headers": [
{
"name": "Lightfield-Version",
"value": "2026-03-01"
}
],
"params": [
{
"name": "entitySlug",
"value": "",
"type": "path"
}
],
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"docs": "Returns field and relationship definitions for the specified custom object type."
},
{
"info": {
"name": "List custom object types",
"type": "http"
},
"http": {
"method": "GET",
"url": "{{baseUrl}}/v1/objects",
"headers": [
{
"name": "Lightfield-Version",
"value": "2026-03-01"
}
],
"auth": {
"type": "bearer",
"token": "{{bearerToken}}"
}
},
"docs": "Returns all custom object types available to the caller."
}
]
}
],
"bundled": true
}