curl \
-X GET \
"https://api.rumbletalk.com/account" \
-H "Authorization: Bearer <token>"
{
"status": true,
"data": {
"id": 123,
"type": 3,
"tokenKey": "FA36BC...",
"passwordSet": 1,
"email": "user@example.com",
"name": "John Smith",
"testLevel": 0,
"company": "Fictional Company",
"countryId": 227,
"address": "100 MAIN ST",
"city": "Seattle",
"state": "Washington",
"unit": "100",
"zipCode": "98104",
"paypalEmail": "",
"currency": "",
"reservedName": "rumbletalk",
"plan": {
"admins": 5,
"rooms": 3,
"users": 150,
"keywords": 10,
"usedAdmins": 3,
"usedKeywords": 5,
"usedRooms": 2,
"exceed": false
}
}
}
curl \
-X PUT \
"https://api.rumbletalk.com/account" \
-H "Authorization: Bearer <token>"
-d "{\"name\":\"Cindy White\"}"
{
"status": true
}
It is only possible to set the currency once.
If you need to change your currency, please contact us at
support@rumbletalk.com
curl \
-X PUT \
"https://api.rumbletalk.com/account/currency" \
-H "Authorization: Bearer <token>"
-d "{\"currency\":\"USD\"}"
{
"status": true
}