Skip to main content
GET
/
admin
/
v1
/
networks
/
{network_id}
/
custom_fields
/
{custom_field_id}
/
members
/
{member_id}
/
responses
/
{id}
/
Return a single response by ID
curl --request GET \
  --url https://api.mn.co/admin/v1/networks/{network_id}/custom_fields/{custom_field_id}/members/{member_id}/responses/{id}/ \
  --header 'Authorization: Bearer <token>'
{
  "id": "1234",
  "created_at": "2025-11-07T23:17:21+00:00",
  "updated_at": "2025-11-07T23:17:21+00:00",
  "user_id": 12345,
  "custom_field_id": 67890,
  "text": "I love hiking and photography",
  "last_edited_at": "2025-01-15T10:30:00Z"
}

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
member_id
integer
required
id
integer
required
network_id
required

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

Response

A custom field answer object

A user's response to a custom field question

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-07T23:17:21+00:00"

updated_at
string<date-time>
required

The date and time the record was last modified

Example:

"2025-11-07T23:17:21+00:00"

user_id
integer
required

ID of the user who provided this response

Example:

12345

custom_field_id
integer
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"