Skip to main content
GET
/
admin
/
v1
/
networks
/
{network_id}
/
custom_fields
/
{custom_field_id}
/
options
Return all options for a custom field
curl --request GET \
  --url https://api.mn.co/admin/v1/networks/{network_id}/custom_fields/{custom_field_id}/options \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "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
    }
  ],
  "links": {
    "self": "<string>",
    "next": "<string>"
  }
}

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

network_id
required

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

Query Parameters

term
string

Search term to filter options by title

page
integer

Page number for pagination

per_page
integer

Items per page (max 100)

Response

200 - application/json

A paginated set of custom field option objects

A paginated list of records

items
object[]

A page of records

Pagination links - the specific format of these links is considered an implementation detail and is subject to change.

Do not assume the links will contain a page parameter.",