Skip to main content
GET
Search CustomFields
A CustomField defines an additional field available for a specific entity type. Nexudus supports attaching arbitrary data to any entity type via the CustomFields array. Each custom field targets a single RecordType (e.g. Coworker, Team, Booking, Product) and has a FieldType that determines how the value is captured and stored (Text, LongText, Boolean, Dropdown, Date, Integer, or Decimal). For Dropdown fields, populate AvailableOptions with a comma-separated list of choices. Set AllowMultipleOptions to true to let users select more than one. The CustomFieldIndex uniquely identifies the field within its record type and business, and is used to map values in the entity’s CustomFields array. Use the Visibility property to control whether the field is Visible, ReadOnly, or Internal (admin-only). The various DisplayIn* flags control where the field appears: sign-up forms, profile forms, tour forms, event sign-up, booking forms, directory search, and public profiles. Custom fields targeting the Coworker record type can be placed in a specific tab using CoworkerFieldPosition (General, Contact, Profile, Billing, Access, or Notes). When RecordType is FloorPlanDesk or Resource, link specific resources via the Resources many-to-many list.

Authentication

This endpoint requires OAuth2 authentication. Include a valid bearer token in the Authorization header. The authenticated user must be a full unrestricted administrator or have the CustomField-List role.

Enums

Query Parameters

Pagination & Sorting

integer
default:"1"
The page number to retrieve.
integer
default:"25"
The number of records per page.
string
The property name to sort results by (e.g. Name, CreatedOn).
integer
Sort direction. 0 for ascending, 1 for descending.

Filters

integer
Filter by business this custom field belongs to.
string
Filter by field label displayed to users.
integer
Filter by sort order when multiple custom fields are shown together.
integer
Filter by entity type this field applies to: Coworker, Team, Booking, Product, Resource, etc..
integer
Filter by data type of the field: Text, LongText, Boolean, Dropdown, Date, Integer, or Decimal.
integer
Filter by tab where this field appears on the coworker record: General, Contact, Profile, Billing, Access, or Notes.
string
Filter by comma-separated list of choices for Dropdown fields.
boolean
Filter by whether multiple options can be selected for Dropdown fields.
integer
Filter by unique index identifying this field within its record type and business.
boolean
Filter by whether a value must be provided when saving the parent entity.
string
Filter by optional group name used to visually group related custom fields together.
boolean
Filter by show this field on the coworker’s public profile page.
Filter by show this field as a filter in the member directory search.
Filter by alternative label shown when this field appears in directory search filters.
integer
Filter by visibility level: Visible (editable by customer), ReadOnly (shown but not editable), or Internal (admin only).
boolean
Filter by show this field on the member sign-up form.
boolean
Filter by show this field on the member profile edit form.
boolean
Filter by show this field on the tour booking form.
boolean
Filter by show this field on the event sign-up form.
boolean
Filter by show this field on the resource booking form.
boolean
Filter by show this field on the product purchase form.
boolean
Filter by show this field on the team sign-up form.
boolean
Filter by show this field on the course sign-up form.
boolean
Filter by show this field on the pricing plan (tariff) sign-up form.
boolean
Filter by show this field on the booking sign-up form.
Filter by show this field as a filter in resource search.

Range Filters

integer
Filter by sort order when multiple custom fields are shown together greater than or equal to this value.
integer
Filter by sort order when multiple custom fields are shown together less than or equal to this value.
integer
Filter by unique index identifying this field within its record type and business greater than or equal to this value.
integer
Filter by unique index identifying this field within its record type and business less than or equal to this value.
string
Filter records created on or after this date. Format: YYYY-MM-DDTHH:mm.
string
Filter records created on or before this date. Format: YYYY-MM-DDTHH:mm.
string
Filter records updated on or after this date. Format: YYYY-MM-DDTHH:mm.
string
Filter records updated on or before this date. Format: YYYY-MM-DDTHH:mm.

Code Examples

Simple listing

Filtering by Name

Range filters

Response

200

CustomField[]
The list of CustomField records matching the query. See the Get one CustomField endpoint for the full list of properties returned for each record.
Partial records — The listing endpoint returns a summary representation of each CustomField. The following fields are not populated in the Records[] response: CoworkerFieldPosition, AvailableOptions, AllowMultipleOptions, Required, DisplayInPublicProfile, DisplayInDirectorySearch, NameInSearch, DisplayInSignUpForm, DisplayInProfileForm, DisplayInTourForm, DisplayInEventSignUpForm, ShowInBookingForm, DisplayInProductSignUpForm, DisplayInTeamSignUpForm, DisplayInCourseSignUpForm, DisplayInTariffSignUpForm, DisplayInBookingSignUpForm, DisplayInResourceSearch.To get all fields, fetch the full record using the Get one CustomField endpoint.Important for updates: When updating a record via PUT, always retrieve the full record with a GET request first, apply your changes to that complete data, and then send the updated record. Do not use data from a listing response as the base for a PUT request, as missing fields may be unintentionally cleared.
integer
Current page number.
integer
Number of records per page.
string
The field used for sorting.
integer
The sort direction (0 = ascending, 1 = descending).
integer
Index of the first item on the current page.
integer
Index of the last item on the current page.
integer
Total number of matching records across all pages.
integer
Total number of pages.
boolean
Whether there is a next page of results.
boolean
Whether there is a previous page of results.
Example Response