Get Room Styles

GET /room_styles

Get all the available room styles list with id and name

Responses

  • Hide response attributes Show response attributes object
    • success integer
    • user integer
    • response array[object]
      Hide response attributes Show response attributes object
      • id integer
      • name string
  • 201
  • 400

    Bad Request

  • 401

    Unauthorized

  • 403

    Forbidden

  • 404

    User Not Found

GET /room_styles
curl \
 --request GET 'https://app.decorai.io/api/room_styles'
Response examples (200)
{
  "success": 42,
  "user": 42,
  "response": [
    {
      "id": 42,
      "name": "string"
    }
  ]
}