PluralBuddyPluralBuddy
API References

Edit a system alter

POST
/v1/users/{user}/alters/{alter}/edit

Edit a system alter by its ID. {user} can be @me to target the current OAuth user.

Authorization

oAuth2 alters:write
AuthorizationBearer <token>

OAuth 2.1 authentication

In: header

Scope: alters:write

Path Parameters

user*string

{user} is a Discord user Snowflake, or @me, referencing the current OAuth user.

alter*string

{alter} is the alter ID.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Default{}

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/users/string/alters/string/edit" \  -H "Content-Type: application/json" \  -d '{}'
{  "alterId": 0,  "systemId": "string",  "username": "string",  "displayName": "string",  "nameMap": [    {      "server": "string",      "name": "string"    }  ],  "color": "string",  "description": "string",  "created": "2019-08-24T14:15:22Z",  "pronouns": "string",  "avatarUrl": "string",  "avatarUrlMap": {},  "webhookAvatarUrl": "string",  "banner": "string",  "lastMessageTimestamp": "2019-08-24T14:15:22Z",  "messageCount": 0,  "alterMode": "nickname",  "proxyTags": [],  "tagIds": [],  "public": 0,  "flags": 0,  "fields": {}}

How is this guide?