Set Member Display Names
Batch update member display names for a community.
Last updated
Was this helpful?
Batch update member display names for a community.
POST /api/servers/:id/members/nicknames
This endpoint updates one or more stored member display names in a community.
Use this endpoint to change how members appear in the community member list. To update the display name of a currently connected radio user, use Set User Display Name.
Headers
Content-Type
application/json
URL Parameters
id
string
Community ID
Body
apiKey
string
Community API key
accNicknames
object array
Members to update
accNicknames object
accId
string
Account UUID
nickname
string
New display name
Example Body
{
"apiKey": "your-community-api-key",
"accNicknames": [
{
"accId": "91de0ce8-c571-11e9-9714-5600023b2434",
"nickname": "Patrol 101"
}
]
}Response
Last updated
Was this helpful?
Was this helpful?
{
"result": "ok"
}
