For the complete documentation index, see llms.txt. This page is also available as Markdown.

Set Member Display Names

Batch update member display names for a community.

Set Member Display Names

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

Name
Value

Content-Type

application/json

URL Parameters

Name
Type
Description

id

string

Community ID

Body

Name
Type
Description

apiKey

string

Community API key

accNicknames

object array

Members to update

accNicknames object

Name
Type
Description

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?