This endpoint retrieve detailed information about a specific user field within a community by its field ID or field name.Authorization#
Bearer token Required
Found in the platform under community settings > API keys.
Permission: User FieldsCommunity ID is needed in the path.
Found in the platform under community settings > Apperance.Field ID or name#
The unique identifier (ObjectId) or name (string) of the custom user field to update. There are 2 methods to get the field ID or name1.
Via API
Use the Get All User Fields endpoint to retrive all fields, use the _id or field in the response. 2.
Via community settings
In the community settings > User Fields, the Field name and Field ID can be found in each field column.
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Request Code Samples
curl --location --request GET 'https://application.returning.ai/apis/v1/communities//user-fields/' \
--header 'Authorization: Bearer <token>'
Responses
application/json
Get specific user field successful
{
"meta": {
"status": "success",
"statusCode": 200
},
"message": "Get specific user field success.",
"data": {
"_id": "68ba4a4f8957d9f71aa6",
"name": "Revenue",
"field": "revenue",
"type": "numerical",
"creator": {
"_id": "661f084eb50c1e6b74e",
"id": 1243,
"avatar": "https://chartsnapshot-genesiv.s3.amazonaws.com/cbbd94f3406.jpeg",
"displayName": "John Doe",
"username": "johndoe"
},
"isCustom": true,
"createdAt": "2025-09-05T02:26:23.561Z",
"updatedAt": "2025-09-05T02:26:23.561Z"
}
}
Modified at 2025-09-17 08:59:17