@@ -47,6 +47,7 @@ There are other rules and restrictions not shared here for the sake of spam and
47
47
| premium_type? | integer | the [ type of Nitro subscription] ( /docs/resources/user#user-object-premium-types ) on a user's account | identify |
48
48
| public_flags? | integer | the public [ flags] ( /docs/resources/user#user-object-user-flags ) on a user's account | identify |
49
49
| avatar_decoration_data? | ?[ avatar decoration data] ( /docs/resources/user#avatar-decoration-data-object ) object | data for the user's avatar decoration | identify |
50
+ | collectibles? | ?[ collectibles] ( /docs/resources/user#collectibles ) object | data for the user's collectibles | identify |
50
51
51
52
###### Example User
52
53
@@ -66,6 +67,14 @@ There are other rules and restrictions not shared here for the sake of spam and
66
67
"avatar_decoration_data" : {
67
68
"sku_id" : " 1144058844004233369" ,
68
69
"asset" : " a_fed43ab12698df65902ba06727e20c0e"
70
+ },
71
+ "collectibles" : {
72
+ "nameplate" : {
73
+ "sku_id" : " 2247558840304243311" ,
74
+ "asset" : " nameplates/nameplates/twilight/" ,
75
+ "label" : " " ,
76
+ "palette" : " cobalt"
77
+ }
69
78
}
70
79
}
71
80
```
@@ -112,6 +121,30 @@ The data for the user's [avatar decoration](https://support.discord.com/hc/en-us
112
121
| asset | string | the [ avatar decoration hash] ( /docs/reference#image-formatting ) |
113
122
| sku_id | snowflake | id of the avatar decoration's SKU |
114
123
124
+ ### Collectibles
125
+
126
+ The collectibles the user has, excluding Avatar Decorations and Profile Effects.
127
+
128
+ ###### Collectible Structure
129
+
130
+ | Field | Type | Description |
131
+ | ------------| --------| ----------------------------------------------------------------------------------------|
132
+ | nameplate? | object | object mapping of [ nameplate data] ( /docs/resources/user#nameplate-nameplate-structure ) |
133
+
134
+
135
+ ### Nameplate
136
+
137
+ The nameplate the user has.
138
+
139
+ ###### Nameplate Structure
140
+
141
+ | Field | Type | Description |
142
+ | ---------| -----------| ------------------------------------------------------------------------------------------------------------------------------------------------------|
143
+ | sku_id | snowflake | id of the nameplate SKU |
144
+ | asset | string | path to the [ nameplate asset] ( /docs/reference#image-formatting ) |
145
+ | label | string | the label of this nameplate. Currently unused |
146
+ | palette | string | background color of the nameplate, one of: ` crimson ` , ` berry ` , ` sky ` , ` teal ` , ` forest ` , ` bubble_gum ` , ` violet ` , ` cobalt ` , ` clover ` , ` lemon ` , ` white ` |
147
+
115
148
### Connection Object
116
149
117
150
The connection object that the user has attached.
0 commit comments