PluralBuddyPluralBuddy
API References

Get PluralBuddy system

GET
/v1/users/{user}/system

Get data of a PluralBuddy system. {user} can be @me to target the current OAuth user.

Authorization

oAuth2 system:read
AuthorizationBearer <token>

OAuth 2.1 authentication

In: header

Scope: system:read

Path Parameters

user*string

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

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/users/string/system"
{  "data": {    "associatedUserId": "string",    "systemName": "string",    "systemDisplayTag": "string",    "displayTagMap": {},    "systemDescription": "string",    "systemAvatar": "string",    "systemBanner": "string",    "systemPronouns": "string",    "nicknameFormat": "string",    "alterIds": [],    "tagIds": [],    "createdAt": "2019-08-24T14:15:22Z",    "systemAutoproxy": [      {        "autoproxyMode": "off",        "autoproxyAlter": "string",        "serverId": "string",        "lastLatchTimestamp": "2019-08-24T14:15:22Z"      }    ],    "systemOperationDM": true,    "latchExpiration": 0,    "public": 0,    "flags": 0,    "disabledGuilds": [],    "subAccounts": [      "string"    ],    "disabled": false  }}

How is this guide?