Skip to main content
GET
/
custom_field_definitions
List custom field definitions
curl --request GET \
  --url https://app.gomangrove.com/api/v1/custom_field_definitions \
  --header 'Authorization: <api-key>'
{
  "data": [
    {
      "id": 42,
      "friendly_id": "cfd_abc123def456",
      "key": "serial",
      "label": "Serial Number",
      "object_type": "asset",
      "value_type": "string",
      "enumeration_options": null,
      "order": 1,
      "is_required": false,
      "project_id": null,
      "created_at": "2026-01-15T10:00:00.000Z",
      "updated_at": "2026-01-15T10:00:00.000Z"
    }
  ],
  "info": {
    "items": 1,
    "page_size": 20,
    "total_items": 1,
    "current_page": 1,
    "next_page": null,
    "previous_page": null,
    "total_pages": 1,
    "sort": [],
    "filter": []
  }
}

Authorizations

Authorization
string
header
required

Query Parameters

page
integer<int32>
default:1
page_size
integer<int32>
default:20
object_type
enum<string>

Filter by the record type the definitions apply to

Available options:
project,
asset
project_id
string

Project friendly ID (e.g., prj_abc123). Widens the result to include that project's scoped definitions.

Response

200

data
object[]
info
object