Skip to main content
GET
/
admin
/
v1
/
networks
/
{network_id}
/
custom_fields
/
{custom_field_id}
/
options
/
{id}
/
Return a single option by ID
curl --request GET \
  --url https://api.mn.co/admin/v1/networks/{network_id}/custom_fields/{custom_field_id}/options/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "1234",
  "created_at": "2025-11-18T17:56:35+00:00",
  "updated_at": "2025-11-18T17:56:35+00:00",
  "title": "Blue",
  "description": "Select this if blue is your favorite color",
  "custom_field_id": 123,
  "member_count": 123,
  "is_ad_hoc": true,
  "creator_id": 123
}

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
required

ID of the custom field

id
integer
required

ID of the option

network_id
required

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

Response

A custom field option object

Custom field options are the selectable values for dropdown custom fields

id
integer
required

The record's integer ID

Example:

"1234"

created_at
string<date-time>
required

The date and time the record was created

Example:

"2025-11-18T17:56:35+00:00"

updated_at
string<date-time>
required

The date and time the record was last modified

Example:

"2025-11-18T17:56:35+00:00"

title
string
required

The title of the option

Example:

"Blue"

custom_field_id
integer
required

The ID of the custom field this option belongs to

member_count
integer
required

The number of members who have selected this option

is_ad_hoc
boolean
required

Whether this option was created by a member (ad-hoc) or by a host

creator_id
integer
required

The ID of the member who created this option

description
string

The description of the option

Example:

"Select this if blue is your favorite color"