curl \
-X GET \
"https://api.rumbletalk.com/chats/123/design" \
-H "Authorization: Bearer <token>"
{
"status": true,
"skinId": 40000,
"dir": "ltr",
"dlgBg": "aaaaaa",
"dlgText": "000000 normal 14 Arial",
"listBg": "transparent url(background.png) scroll left center",
"chatBg": "transparent",
"textBg": "ffffff",
"generalText": "ffffff normal 11 Arial",
"listText": "FFFFFF normal 14 Arial",
"chatText": "000000 normal 14 Arial",
"textText": "000000 normal 15 Arial",
"background": "ffffff url(background.jpg) no-repeat scroll left center",
"dlgBorder": "1 969696 5",
"usersBorder": "1 b3b4b4",
"chatBorder": "1 969696",
"textBorder": "0 b4b4b4 5",
"messageBorder": "1 d6d6d6 1",
"usersWidth": 25,
"textHeight": 30,
"messageColors": "ff0000,00ff80,0080ff",
"colors": "00ff00,AA2211",
"css": null,
"mobileCss": null
}
curl \
-X PUT \
"https://api.rumbletalk.com/chats/123/design" \
-H "Authorization: Bearer <token>" \
-d "{\"messageBorder\":\"3 0000ff 5\"}"
{
"status": true
}
Changing the chat's skin will RESET the chat's design variables
curl \
-X PUT \
"https://api.rumbletalk.com/chats/123/design/skin" \
-H "Authorization: Bearer <token>" \
-d "{\"skinId\":\"40000\"}"
{
"status": true
}