User Fields
Retrieve detailed information about a specific user field within a community
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
The unique identifier of the community
Example:507f1f77bcf86cd799439011
Match pattern:^[0-9a-fA-F]{24}$
The unique identifier of the user field
Example:507f1f77bcf86cd799439012
Match pattern:^[0-9a-fA-F]{24}$
Request samples
curl --location --request GET 'https://integration.returning.ai/communities/507f1f77bcf86cd799439011/user-fields/507f1f77bcf86cd799439012'
Responses
application/json
Get specific user field successful
Success message for the operation
Field's unique identifier
Human-readable field name
User who created this field
Whether this is a custom field
createdAt
string <date-time>
optionalupdatedAt
string <date-time>
optionalField last update timestamp
{
"meta": {
"status": "success",
"statusCode": 200
},
"message": "Get specific user field",
"data": {
"_id": "507f1f77bcf86cd799439011",
"field": "custom_field_1",
"name": "Custom Field 1",
"type": "string",
"creator": {
"_id": "507f1f77bcf86cd799439011",
"id": 123456789012345680,
"avatar": "https://cdn.discordapp.com/avatars/123456789012345678/avatar.png",
"displayName": "John Doe",
"username": "johndoe"
},
"isCustom": true,
"createdAt": "2023-01-01T12:00:00.000Z",
"updatedAt": "2023-01-01T12:00:00.000Z"
}
}
Modified at 2025-06-23 14:46:45