Skip to main content
POST
Create or update a member's response to a custom field

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

custom_field_id
integer<uint64>
required

ID of the custom field

member_id
integer<uint64>
required

ID of the member

network_id
required

The Network's unique integer ID, or subdomain Unique numeric network ID

Body

application/json

Submit results as JSON

Request to create or update a custom field answer

text
string

The text response for text-based custom fields

Example:

"I love hiking and photography"

number
integer<uint64>

The whole-number response for number custom fields

Example:

42

boolean_value
boolean

The Yes/No response for Yes/No custom fields

Example:

true

date
string<date>

The date response for date custom fields, as YYYY-MM-DD

Example:

"2026-03-03"

start_date
string<date>

The start of the range for date range custom fields, as YYYY-MM-DD. Sent together with end_date

Example:

"2026-03-03"

end_date
string<date>

The end of the range for date range custom fields, as YYYY-MM-DD. Sent together with start_date

Example:

"2026-03-10"

month
integer<uint64>

The month response for recurring date custom fields

Example:

3

day
integer<uint64>

The day response for recurring date custom fields

Example:

3

url
string

The web address response for URL custom fields

Example:

"https://example.com"

phone_number
string

The phone number response for phone number custom fields, in E.164 form

Example:

"+14155552671"

latitude
number<double>

Latitude of the place, for location custom fields. Sent together with text and longitude

Example:

37.7749

longitude
number<double>

Longitude of the place, for location custom fields. Sent together with text and latitude

Example:

-122.4194

locations
object[]

Every place picked, for multi location custom fields. Replaces the stored places; an empty array clears them

segment_ids
integer<uint64>[]

Array of segment IDs for dropdown custom fields

Response

The stored answer: an answer object for a type keeping one row per member, or the member's whole answer for a type keeping one row per value (multi_location)

A user's response to a custom field question

id
integer<uint64>
required

The record's integer ID

Example:

"1234"

created_at
string<date-time>
required

The date and time the record was created

Example:

"2026-09-27T20:54:55+00:00"

updated_at
string<date-time>
required

The date and time the record was last modified

Example:

"2026-09-27T20:54:55+00:00"

user_id
integer<uint64>
required

ID of the user who provided this response

Example:

12345

custom_field_id
integer<uint64>
required

ID of the custom field this response is for

Example:

67890

last_edited_at
string<date-time>
required

When this response was last edited

Example:

"2025-01-15T10:30:00Z"

text
string

The text response (for text-based custom fields)

Example:

"I love hiking and photography"

number
integer<uint64>

The whole-number response (for number custom fields)

Example:

42

boolean_value
boolean

The Yes/No response (for Yes/No custom fields)

Example:

true

date
string<date>

The date response (for date custom fields)

Example:

"2026-03-03"

latitude
number<double>

Latitude of the place (for location custom fields)

Example:

37.7749

longitude
number<double>

Longitude of the place (for location custom fields)

Example:

-122.4194

start_date
string<date>

The start of the range (for date range custom fields)

Example:

"2026-03-03"

end_date
string<date>

The end of the range (for date range custom fields)

Example:

"2026-03-10"

month
integer<uint64>

The month response (for recurring date custom fields)

Example:

3

day
integer<uint64>

The day response (for recurring date custom fields)

Example:

3

url
string

The web address response (for URL custom fields)

Example:

"https://example.com"

phone_number
string

The phone number response in E.164 form (for phone number custom fields)

Example:

"+14155552671"

segments
object[]

Array of segments (for dropdown custom fields)