GET /api/gallery/pictures/:roomId
| Field | Type |
|---|---|
| :roomId | Number |
Room[]
| Field | Type |
|---|---|
| roomId | Number |
| pictures | Picture[] |
{
roomId: 50
pictures: [
{
imageUrl: "imageurl1.com",
description: "image description",
verified: true
},
{
imageUrl: "imageurl2.com",
description: "image description",
verified: false
}
]
}
| Field | Type |
|---|---|
| imageUrl | String |
| description | String |
| verified | boolean |