CustomFields
Search CustomFields
Search and list CustomField records with filtering, sorting, and pagination.
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 singleDocumentation Index
Fetch the complete documentation index at: https://learn.nexudus.com/llms.txt
Use this file to discover all available pages before exploring further.
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
eCustomFieldRecordType — RecordType values
eCustomFieldRecordType — RecordType values
| Value | Name |
|---|---|
| 1 | Coworker |
| 2 | Team |
| 3 | FloorPlanDesk |
| 4 | CrmOpportunity |
| 5 | Visitor |
| 6 | Proposal |
| 7 | CoworkerInternal |
| 8 | HelpDeskMessage |
| 9 | HelpDeskDepartment |
| 10 | Product |
| 11 | Booking |
| 12 | CoworkerInvoice |
| 13 | Business |
| 14 | CoworkerContract |
| 15 | Tariff |
| 16 | Resource |
| 17 | FloorPlan |
| 18 | InventoryAsset |
eFieldType — FieldType values
eFieldType — FieldType values
| Value | Name |
|---|---|
| 1 | Text |
| 2 | LongText |
| 3 | Boolean |
| 4 | Dropdown |
| 5 | Date |
| 6 | Integer |
| 7 | Decimal |
eCoworkerFieldPosition — CoworkerFieldPosition values
eCoworkerFieldPosition — CoworkerFieldPosition values
| Value | Name |
|---|---|
| 1 | General |
| 2 | Contact |
| 3 | Profile |
| 4 | Billing |
| 5 | Access |
| 6 | Notes |
eFieldVisibility — Visibility values
eFieldVisibility — Visibility values
| Value | Name |
|---|---|
| 1 | Visible |
| 2 | ReadOnly |
| 3 | Internal |
Query Parameters
Pagination & Sorting
The page number to retrieve.
The number of records per page.
The property name to sort results by (e.g.
Name, CreatedOn).Sort direction.
0 for ascending, 1 for descending.Filters
Filter by business this custom field belongs to.
Filter by field label displayed to users.
Filter by sort order when multiple custom fields are shown together.
Filter by entity type this field applies to: Coworker, Team, Booking, Product, Resource, etc..
Filter by data type of the field: Text, LongText, Boolean, Dropdown, Date, Integer, or Decimal.
Filter by tab where this field appears on the coworker record: General, Contact, Profile, Billing, Access, or Notes.
Filter by comma-separated list of choices for Dropdown fields.
Filter by whether multiple options can be selected for Dropdown fields.
Filter by unique index identifying this field within its record type and business.
Filter by whether a value must be provided when saving the parent entity.
Filter by optional group name used to visually group related custom fields together.
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.
Filter by visibility level: Visible (editable by customer), ReadOnly (shown but not editable), or Internal (admin only).
Filter by show this field on the member sign-up form.
Filter by show this field on the member profile edit form.
Filter by show this field on the tour booking form.
Filter by show this field on the event sign-up form.
Filter by show this field on the resource booking form.
Filter by show this field on the product purchase form.
Filter by show this field on the team sign-up form.
Filter by show this field on the course sign-up form.
Filter by show this field on the pricing plan (tariff) sign-up form.
Filter by show this field on the booking sign-up form.
Filter by show this field as a filter in resource search.
Range Filters
Filter by sort order when multiple custom fields are shown together greater than or equal to this value.
Filter by sort order when multiple custom fields are shown together less than or equal to this value.
Filter by unique index identifying this field within its record type and business greater than or equal to this value.
Filter by unique index identifying this field within its record type and business less than or equal to this value.
Filter records created on or after this date. Format:
YYYY-MM-DDTHH:mm.Filter records created on or before this date. Format:
YYYY-MM-DDTHH:mm.Filter records updated on or after this date. Format:
YYYY-MM-DDTHH:mm.Filter records updated on or before this date. Format:
YYYY-MM-DDTHH:mm.Code Examples
Simple listing
Filtering by Name
Range filters
Response
200
The list of CustomField records matching the query. See the Get one CustomField endpoint for the full list of properties returned for each record.
Current page number.
Number of records per page.
The field used for sorting.
The sort direction (
0 = ascending, 1 = descending).Index of the first item on the current page.
Index of the last item on the current page.
Total number of matching records across all pages.
Total number of pages.
Whether there is a next page of results.
Whether there is a previous page of results.
Example Response
Search CustomFields