v1

latestOpenAPI 3.0.32026-08-0613775357.6 KB
custom_field_values_per_user

Create user custom field value

Creates a user custom field value.

post/users/{user_id}/custom_field_values

Request body

custom_field_idinteger required

The unique identifier of the custom field.

valuestring required

The actual value of the custom fields.

For a custom field that has a data_type of multiple_choice_selection_list, this can be an array of values from that list.

Example request

{
  "value": "Effective Growth"
}

Response

The new user custom field value.

idinteger

Unique identifier for the custom field value.

custom_field_namestring
custom_field_idinteger
valuestring

The actual value of the custom fields.

For a custom field that has a data_type of multiple_choice_selection_list, this can be an array of values from that list.

created_atstring date-time
updated_atstring date-time

Example response

{
  "id": 9996277,
  "custom_field_name": "FY Goals",
  "custom_field_id": 23654,
  "value": "Effective Growth",
  "created_at": "2025-04-11T23:37:21Z",
  "updated_at": "2025-04-11T23:37:21Z"
}