Retrieve detailed information about a specific user field within a community by its field ID or field name.Security Requirements:
Bearer token authentication required
Only community members can access this endpoint
User must have COMMUNITY_MEMBER permission for the specified community
Community API key with userFields permission can also be used
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params
Request Code Samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'https://application.returning.ai/apis/v1/communities/507f1f77bcf86cd799439011/user-fields/507f1f77bcf86cd799439012'
Responses
🟢200OK
application/json
Get specific user field successful
Body
Example
{"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"}}