Get Room Styles

GET /room_styles

Get all the available room styles list with id and name

Responses

GET /room_styles
curl \
 -X GET https://decorai.io/api/room_styles \
 -H "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "success": 42,
  "user": 42,
  "response": [
    {
      "id": 42,
      "name": "string"
    }
  ]
}