Comprobar disponibilidad de los puestos por planta
Última modificación: 25/09/2023
Comprobar disponibilidad
Comprueba la disponibilidad de los recursos teniendo en cuenta los siguientes criterios:
- Si el usuario tiene acceso al recurso (grupos).
- Si el recurso tiene las características seleccionadas por el usuario (opcional).
- Si se cumplen las reglas del recurso (antelación de la reserva, horarios…).
- Si el recurso está libre en el momento seleccionado por el usuario.
- No se tendrán en cuenta los puestos fijos asignados a usuarios.
Request
HTTP request
GET /api/v1/users/me/buildings/{buildingId}/floors/{floorId}/workstations/subcategories/{subcategoryId}/free
Headers
| Header | Value | Required |
|---|---|---|
| Authorization | Bearer eyJ0eXBlIjoiSldUIiwiYWxnIjoiSFM1MT… | true |
Params
| Param | Value | Required |
|---|---|---|
| bookingDays | List<BookingDay> | true |
| features | Array de identificadores de las características por las que se quiere filtrar. | false |
| maxCostPerHour | BigDecimal (32.01) | false |
| isSupervisedBooking | Indica si se está intentando realizar una reserva supervisada. Solo disponible para puestos. | false |
| allDayBookings | Indica si se está intentando realizar una reserva para todo el día. Solo disponible para puestos. | false |
¡Importante! - Ejemplo de uso del parámetro bookingDays.
Para utilizar una lista en los parámetros de una petición GET hay que hacerlo de la siguiente forma:
http://localhost:9010/api/v1/users/{userId}/buildings/{buildingId}/floors/{floorId}/workstations/subcategories/{subcategoryId}/free?bookingDays[0].startDate=1561708800000&bookingDays[0].endDate=1561712400000&bookingDays[1].startDate=1561723200000&bookingDays[1].endDate=1561730400000
Sin embargo, para poder realizar la petición correctamente hay que encodear la URL ya que los corchetes "[]" son carácteres no válidos.
Request Example
GET http://localhost:9010/api/v1/users/me/buildings/5068c634-064d-4e15-b17f-1a420c68f051/floors/3268c634-064d-4e15-b17f-1a420c68f051/workstations/subcategories/eaacb523-7a8b-44d4-a3b2-d67f036a3b1c/free?bookingDays%5B0%5D.startDate=1561708800000&bookingDays%5B0%5D.endDate=1561712400000&bookingDays%5B1%5D.startDate=1561723200000&bookingDays%5B1%5D.endDate=1561730400000&features=faf57caf-53ed-410f-bf3d-39f220593ba7,asd57caf-53ed-230f-bf3d-39f220593c4r
Response
Si se han conseguido procesar la petición, se devuelve un código 200 con la información de los recursos disponibles.
Response
HTTP/1.1 200 OK
Content-type: application/json
{
"freeResources": [
{
"id": "01c9f29c-14d3-4e8d-9ca6-4a6ce1545e08",
"name": "B-P1-PUESTO-43",
"posterCode": "B-P1-PUESTO-43",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 478,
"bottomRightX": 194,
"bottomRightY": 527
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "0201fd09-8ab8-49cc-b588-2455fa570177",
"name": "B-P1-PUESTO-16",
"posterCode": "B-P1-PUESTO-16",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 998,
"bottomRightX": 1207,
"bottomRightY": 1046
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "0213e9f8-fc5a-499e-a070-96da87735a87",
"name": "B-P1-PUESTO-97",
"posterCode": "B-P1-PUESTO-97",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1879,
"bottomRightX": 442,
"bottomRightY": 1927
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "0392490c-54f5-4fb8-8189-8115d7144963",
"name": "B-P1-PUESTO-29",
"posterCode": "B-P1-PUESTO-29",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 2680,
"bottomRightX": 1372,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "06d47a98-2dcd-49a3-b16f-bff0c6599992",
"name": "B-P1-PUESTO-87",
"posterCode": "B-P1-PUESTO-87",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1679,
"bottomRightX": 442,
"bottomRightY": 1727
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "07a85be1-7e77-4f80-a667-895950897889",
"name": "B-P1-PUESTO-101",
"posterCode": "B-P1-PUESTO-101",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2040,
"bottomRightX": 194,
"bottomRightY": 2090
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "089354b3-82b2-4547-a499-babf31327e9c",
"name": "B-P1-PUESTO-33",
"posterCode": "B-P1-PUESTO-33",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 2759,
"bottomRightX": 1289,
"bottomRightY": 2808
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "099fb9b4-c93c-4ba8-b81b-8ccd6f3706a0",
"name": "B-P1-PUESTO-18",
"posterCode": "B-P1-PUESTO-18",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 998,
"bottomRightX": 1372,
"bottomRightY": 1046
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "0a1cd9a2-2f7a-4318-a150-1b96c440d572",
"name": "B-P1-PUESTO-26",
"posterCode": "B-P1-PUESTO-26",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 2560,
"bottomRightX": 1372,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "10925a9a-e13c-48a8-8b09-f4247d13e484",
"name": "B-P1-PUESTO-38",
"posterCode": "B-P1-PUESTO-38",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1367,
"topLeftY": 3170,
"bottomRightX": 1416,
"bottomRightY": 3219
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "11721b84-ea2b-4f33-8f56-52526707c9e8",
"name": "B-P1-PUESTO-99",
"posterCode": "B-P1-PUESTO-99",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1879,
"bottomRightX": 276,
"bottomRightY": 1927
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "131f348b-c602-4f9b-a706-7e2ef4d409f3",
"name": "B-P1-PUESTO-21",
"posterCode": "B-P1-PUESTO-21",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 2481,
"bottomRightX": 1372,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "15d259c0-9039-4504-9a32-93a3ca0263a2",
"name": "Gran Cañón",
"posterCode": "B-P1-PUESTO-14",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 919,
"bottomRightX": 1289,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "16a61b27-d215-43a2-8aac-5ab316fb6f8a",
"name": "B-P1-PUESTO-56",
"posterCode": "B-P1-PUESTO-56",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 798,
"bottomRightX": 359,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "1aad9e89-d39c-4294-b6ca-2eec1be2916c",
"name": "B-P1-PUESTO-85",
"posterCode": "B-P1-PUESTO-85",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1600,
"bottomRightX": 359,
"bottomRightY": 1649
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "1ba50ffb-f700-40f2-bfcc-0766d2c628f5",
"name": "B-P1-PUESTO-79",
"posterCode": "B-P1-PUESTO-79",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1438,
"bottomRightX": 442,
"bottomRightY": 1487
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "1d33c9fd-9261-472a-ac85-246d9949bdab",
"name": "B-P1-PUESTO-71",
"posterCode": "B-P1-PUESTO-71",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1238,
"bottomRightX": 442,
"bottomRightY": 1288
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "1f722110-66fc-4e31-83ba-3511b3c3aa9d",
"name": "Atacama",
"posterCode": "B-P1-PUESTO-6",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 720,
"bottomRightX": 1289,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "207455c3-8a08-4dcc-ac4b-90b8905cbc41",
"name": "B-P1-PUESTO-34",
"posterCode": "B-P1-PUESTO-34",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 2759,
"bottomRightX": 1372,
"bottomRightY": 2808
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "20d6195f-fb51-481a-a6ce-8c7fefff61b1",
"name": "B-P1-PUESTO-74",
"posterCode": "B-P1-PUESTO-74",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1238,
"bottomRightX": 194,
"bottomRightY": 1288
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "2172224b-8a4e-4ef5-816a-ed931727319d",
"name": "B-P1-PUESTO-49",
"posterCode": "B-P1-PUESTO-49",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 557,
"bottomRightX": 276,
"bottomRightY": 606
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "21e34721-01ec-49a7-90cc-926b1257b261",
"name": "B-P1-PUESTO-118",
"posterCode": "B-P1-PUESTO-118",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2481,
"bottomRightX": 276,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "2450d796-b347-4e6c-8dc5-46a23e34936d",
"name": "Sala Gobi",
"posterCode": "B-P1-PUESTO-11",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 797,
"bottomRightX": 1454,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "267bca09-ed7c-4809-8d5b-6ed825987c06",
"name": "B-P1-PUESTO-61",
"posterCode": "B-P1-PUESTO-61",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 919,
"bottomRightX": 359,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "27ffacbf-013f-4fc9-addf-591fa05db399",
"name": "B-P1-PUESTO-40",
"posterCode": "B-P1-PUESTO-40",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 446,
"topLeftY": 259,
"bottomRightX": 494,
"bottomRightY": 307
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "2ee8b5e2-cb8d-4aca-80d5-2af68c8e062e",
"name": "B-P1-PUESTO-20",
"posterCode": "B-P1-PUESTO-20",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 2481,
"bottomRightX": 1454,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "2f2d3f04-2363-4251-93bc-0cfbc5fa8c57",
"name": "B-P1-PUESTO-37",
"posterCode": "B-P1-PUESTO-37",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1266,
"topLeftY": 3170,
"bottomRightX": 1316,
"bottomRightY": 3219
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "328b7cf6-ed6d-4002-bd0d-5cf8377c652c",
"name": "B-P1-PUESTO-69",
"posterCode": "B-P1-PUESTO-69",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1159,
"bottomRightX": 359,
"bottomRightY": 1209
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "39c55e1d-8118-40ce-9c99-06a111f41aa1",
"name": "B-P1-PUESTO-22",
"posterCode": "B-P1-PUESTO-22",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 2481,
"bottomRightX": 1289,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "3b1c17d3-5264-46fc-8dbb-f0fc330503e9",
"name": "B-P1-PUESTO-129",
"posterCode": "B-P1-PUESTO-129",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2760,
"bottomRightX": 442,
"bottomRightY": 2807
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "4044cb3d-36c7-4ad4-8426-87f660a2f654",
"name": "B-P1-PUESTO-36",
"posterCode": "B-P1-PUESTO-36",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1118,
"topLeftY": 3170,
"bottomRightX": 1167,
"bottomRightY": 3219
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "4502fe09-ad9e-4993-83ed-4f3f72a5f82c",
"name": "B-P1-PUESTO-116",
"posterCode": "B-P1-PUESTO-116",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2318,
"bottomRightX": 194,
"bottomRightY": 2368
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "482ea34c-39d6-418c-95c8-3286d092ed90",
"name": "B-P1-PUESTO-51",
"posterCode": "B-P1-PUESTO-51",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 719,
"bottomRightX": 194,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "512a73ce-785e-46a5-aa1d-01bdbe316cf1",
"name": "B-P1-PUESTO-77",
"posterCode": "B-P1-PUESTO-77",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1359,
"bottomRightX": 359,
"bottomRightY": 1407
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "521f1ffb-9974-49f8-b7ed-257d69ab9efb",
"name": "B-P1-PUESTO-114",
"posterCode": "B-P1-PUESTO-114",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2318,
"bottomRightX": 359,
"bottomRightY": 2368
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "529bc7f9-dba4-48b8-b3eb-b56b017c0ccd",
"name": "B-P1-PUESTO-15",
"posterCode": "B-P1-PUESTO-15",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 919,
"bottomRightX": 1207,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "53b47ada-4c52-4e9e-b671-3b9dbfea5bc6",
"name": "B-P1-PUESTO-60",
"posterCode": "B-P1-PUESTO-60",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 919,
"bottomRightX": 276,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "5511d482-b251-411d-8b63-0a054d99ed1e",
"name": "B-P1-PUESTO-128",
"posterCode": "B-P1-PUESTO-128",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2680,
"bottomRightX": 442,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "5587b617-ee05-49a2-82b5-8400a8e3db93",
"name": "B-P1-PUESTO-84",
"posterCode": "B-P1-PUESTO-84",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1600,
"bottomRightX": 276,
"bottomRightY": 1649
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "561c6d15-bf6d-4c91-9c04-b2558647daec",
"name": "B-P1-PUESTO-106",
"posterCode": "B-P1-PUESTO-106",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2119,
"bottomRightX": 359,
"bottomRightY": 2168
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "59ce4d21-2276-479a-8d6d-dc0d00ba6c90",
"name": "B-P1-PUESTO-59",
"posterCode": "B-P1-PUESTO-59",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 919,
"bottomRightX": 194,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "5a08e206-3984-4efd-ac31-3fe5602ded21",
"name": "B-P1-PUESTO-130",
"posterCode": "B-P1-PUESTO-130",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2760,
"bottomRightX": 359,
"bottomRightY": 2807
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "5b7f1e21-38e3-4519-9a83-a7887af09379",
"name": "B-P1-PUESTO-105",
"posterCode": "B-P1-PUESTO-105",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2119,
"bottomRightX": 442,
"bottomRightY": 2168
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "61598fc8-cb48-497f-991c-b46adb6b072d",
"name": "B-P1-PUESTO-94",
"posterCode": "B-P1-PUESTO-94",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1800,
"bottomRightX": 276,
"bottomRightY": 1848
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "61713487-0af8-4860-884a-0a59a907db5d",
"name": "B-P1-PUESTO-121",
"posterCode": "B-P1-PUESTO-121",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2559,
"bottomRightX": 442,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "61769ab0-dff9-4267-98b7-c54b255fca8d",
"name": "B-P1-PUESTO-113",
"posterCode": "B-P1-PUESTO-113",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2318,
"bottomRightX": 442,
"bottomRightY": 2368
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "623e9481-2237-4221-8c77-b0198010705e",
"name": "B-P1-PUESTO-46",
"posterCode": "B-P1-PUESTO-46",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 478,
"bottomRightX": 442,
"bottomRightY": 527
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "63293788-2487-488a-b7bd-18d920592808",
"name": "B-P1-PUESTO-90",
"posterCode": "B-P1-PUESTO-90",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1679,
"bottomRightX": 194,
"bottomRightY": 1727
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "686fcb91-8649-4847-82e7-7edafcac4533",
"name": "B-P1-PUESTO-76",
"posterCode": "B-P1-PUESTO-76",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1359,
"bottomRightX": 276,
"bottomRightY": 1407
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "6bb0a821-9901-4bf7-9588-2d05a0cbafa3",
"name": "B-P1-PUESTO-98",
"posterCode": "B-P1-PUESTO-98",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1879,
"bottomRightX": 359,
"bottomRightY": 1927
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "6d98018a-f792-4169-8433-e3144bc18175",
"name": "B-P1-PUESTO-72",
"posterCode": "B-P1-PUESTO-72",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1238,
"bottomRightX": 359,
"bottomRightY": 1288
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "76386bff-6fcb-4c2f-a015-38108b5bb9fc",
"name": "B-P1-PUESTO-1",
"posterCode": "B-P1-PUESTO-1",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1121,
"topLeftY": 305,
"bottomRightX": 1167,
"bottomRightY": 354
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "771dbc0a-7b38-4ce3-a537-63a23e48be45",
"name": "B-P1-PUESTO-52",
"posterCode": "B-P1-PUESTO-52",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 719,
"bottomRightX": 276,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "77a68e58-3f54-4743-ad9d-b7eaeb46ff99",
"name": "B-P1-PUESTO-53",
"posterCode": "B-P1-PUESTO-53",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 719,
"bottomRightX": 359,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "7882edc0-66b4-4ce9-af04-17f89e44d48d",
"name": "B-P1-PUESTO-41",
"posterCode": "B-P1-PUESTO-41",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 296,
"topLeftY": 259,
"bottomRightX": 344,
"bottomRightY": 307
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "796df079-1b1e-46b8-b50a-dc97a0085d0f",
"name": "B-P1-PUESTO-81",
"posterCode": "B-P1-PUESTO-81",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1438,
"bottomRightX": 276,
"bottomRightY": 1487
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "7a6b6570-9801-4f06-a385-821429eb33ed",
"name": "B-P1-PUESTO-31",
"posterCode": "B-P1-PUESTO-31",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 2680,
"bottomRightX": 1207,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "7a81eff0-8a85-4ce3-8fca-a2c61ef7059d",
"name": "Ness",
"posterCode": "B-P1-PUESTO-3",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1372,
"topLeftY": 305,
"bottomRightX": 1421,
"bottomRightY": 354
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "7b26b545-a184-48c6-b48c-6441851567eb",
"name": "B-P1-PUESTO-126",
"posterCode": "B-P1-PUESTO-126",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2680,
"bottomRightX": 276,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "7e237c7d-df95-4841-bcfd-c3ff592f7b48",
"name": "B-P1-PUESTO-127",
"posterCode": "B-P1-PUESTO-127",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2680,
"bottomRightX": 359,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "80e63da5-66c9-455d-913d-442c02f8cff9",
"name": "B-P1-PUESTO-67",
"posterCode": "B-P1-PUESTO-67",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1159,
"bottomRightX": 194,
"bottomRightY": 1209
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "823eb90f-a06e-465f-92f8-a37d05913972",
"name": "B-P1-PUESTO-80",
"posterCode": "B-P1-PUESTO-80",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1438,
"bottomRightX": 359,
"bottomRightY": 1487
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "8433136f-9ee6-417b-aa05-bdcf13001282",
"name": "B-P1-PUESTO-17",
"posterCode": "B-P1-PUESTO-17",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 998,
"bottomRightX": 1289,
"bottomRightY": 1046
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "863a2d21-a1d7-4be5-a3e3-f39b07e846f5",
"name": "B-P1-PUESTO-54",
"posterCode": "B-P1-PUESTO-54",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 719,
"bottomRightX": 442,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "8bd87099-25b7-4837-9fb1-3c14e1f19c8b",
"name": "B-P1-PUESTO-82",
"posterCode": "B-P1-PUESTO-82",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1438,
"bottomRightX": 194,
"bottomRightY": 1487
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "8c44a97a-b06e-4460-82ac-11a9f6ced515",
"name": "B-P1-PUESTO-75",
"posterCode": "B-P1-PUESTO-75",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1359,
"bottomRightX": 194,
"bottomRightY": 1407
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "8c70cb06-7f65-4388-a941-4ab19fd6765d",
"name": "B-P1-PUESTO-122",
"posterCode": "B-P1-PUESTO-122",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2559,
"bottomRightX": 359,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "8da89f99-b8c0-45ff-94f4-113994b8b20c",
"name": "B-P1-PUESTO-83",
"posterCode": "B-P1-PUESTO-83",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1600,
"bottomRightX": 194,
"bottomRightY": 1649
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "8eb83cde-a2a7-4c03-85ac-94ba4a65783c",
"name": "B-P1-PUESTO-92",
"posterCode": "B-P1-PUESTO-92",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 777,
"topLeftY": 2558,
"bottomRightX": 826,
"bottomRightY": 2606
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "935c8f11-1109-4e03-baf2-6cc5320fef13",
"name": "B-P1-PUESTO-86",
"posterCode": "B-P1-PUESTO-86",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1600,
"bottomRightX": 442,
"bottomRightY": 1649
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "964f57f9-236b-419d-9e4e-a8388709eb18",
"name": "B-P1-PUESTO-123",
"posterCode": "B-P1-PUESTO-123",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2559,
"bottomRightX": 276,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "97287bb4-ee34-4d3d-8ed7-f24dabcc00ee",
"name": "B-P1-PUESTO-39",
"posterCode": "B-P1-PUESTO-39",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 696,
"topLeftY": 259,
"bottomRightX": 746,
"bottomRightY": 307
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "97b78f75-010f-44f0-8365-477022ac479f",
"name": "B-P1-PUESTO-104",
"posterCode": "B-P1-PUESTO-104",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2040,
"bottomRightX": 442,
"bottomRightY": 2090
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "9c22c4f7-4bed-47dc-97b3-f22b253abeb5",
"name": "B-P1-PUESTO-62",
"posterCode": "B-P1-PUESTO-62",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 919,
"bottomRightX": 442,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "9e0338c4-12c7-4d65-8da4-bf4fb9348be8",
"name": "B-P1-PUESTO-108",
"posterCode": "B-P1-PUESTO-108",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2119,
"bottomRightX": 194,
"bottomRightY": 2168
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "9e629424-7aef-4fda-afdf-e67be6fe2a5d",
"name": "B-P1-PUESTO-30",
"posterCode": "B-P1-PUESTO-30",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 2680,
"bottomRightX": 1289,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "9f849f30-dd19-40d2-b814-1f5e8c0687a0",
"name": "B-P1-PUESTO-44",
"posterCode": "B-P1-PUESTO-44",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 478,
"bottomRightX": 276,
"bottomRightY": 527
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a193c7db-a9a6-4977-ab2c-da7b5ebf844a",
"name": "Everglades",
"posterCode": "B-P1-PUESTO-9",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 797,
"bottomRightX": 1289,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a2fe3510-197d-4f82-bbe6-175173848afc",
"name": "B-P1-PUESTO-68",
"posterCode": "B-P1-PUESTO-68",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1159,
"bottomRightX": 276,
"bottomRightY": 1209
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a3175b20-381d-4d40-bca5-44bdda789743",
"name": "B-P1-PUESTO-91",
"posterCode": "B-P1-PUESTO-91",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 711,
"topLeftY": 2558,
"bottomRightX": 760,
"bottomRightY": 2606
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a4604f5a-d7af-4554-bbde-08d282e50f7d",
"name": "B-P1-PUESTO-96",
"posterCode": "B-P1-PUESTO-96",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1800,
"bottomRightX": 442,
"bottomRightY": 1848
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a4e08d24-736e-4958-9b4f-dab9c2abda65",
"name": "B-P1-PUESTO-32",
"posterCode": "B-P1-PUESTO-32",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 2759,
"bottomRightX": 1207,
"bottomRightY": 2808
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a7eb5c60-f76b-4cee-98be-cd8b1c16c74b",
"name": "B-P1-PUESTO-25",
"posterCode": "B-P1-PUESTO-25",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1240,
"topLeftY": 2560,
"bottomRightX": 1289,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "a9482b4c-b158-4fe3-bfbc-735f62dfe5a7",
"name": "Groenlandia",
"posterCode": "B-P1-PUESTO-7",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 720,
"bottomRightX": 1207,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "aae7232b-409a-4d7f-af6f-f48ae9cad4b0",
"name": "B-P1-PUESTO-103",
"posterCode": "B-P1-PUESTO-103",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2040,
"bottomRightX": 359,
"bottomRightY": 2090
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ab387907-78d3-4116-be37-59475fa754b7",
"name": "B-P1-PUESTO-88",
"posterCode": "B-P1-PUESTO-88",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1679,
"bottomRightX": 359,
"bottomRightY": 1727
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "adbb04ba-2b6c-4f09-9a7b-71b66d745127",
"name": "B-P1-PUESTO-100",
"posterCode": "B-P1-PUESTO-100",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1879,
"bottomRightX": 194,
"bottomRightY": 1927
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ae92566d-c048-40df-bfc2-8eeee46beb7f",
"name": "B-P1-PUESTO-107",
"posterCode": "B-P1-PUESTO-107",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2119,
"bottomRightX": 276,
"bottomRightY": 2168
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "b1e50890-cabe-491f-bb04-78d89ba1ed16",
"name": "B-P1-PUESTO-58",
"posterCode": "B-P1-PUESTO-58",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 798,
"bottomRightX": 194,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "b4dc7763-243d-456f-aa31-07aaa419956c",
"name": "B-P1-PUESTO-117",
"posterCode": "B-P1-PUESTO-117",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2481,
"bottomRightX": 194,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "b6c96b91-c408-40cc-9ccc-c571354768f2",
"name": "B-P1-PUESTO-64",
"posterCode": "B-P1-PUESTO-64",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 997,
"bottomRightX": 359,
"bottomRightY": 1045
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "b79898e1-144d-4e58-91d1-c9449c711414",
"name": "B-P1-PUESTO-102",
"posterCode": "B-P1-PUESTO-102",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2040,
"bottomRightX": 276,
"bottomRightY": 2090
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "b839e159-f72c-4209-828d-ebfda01060d1",
"name": "B-P1-PUESTO-63",
"posterCode": "B-P1-PUESTO-63",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 997,
"bottomRightX": 442,
"bottomRightY": 1045
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "b85c01c7-7b2a-47c3-8567-1c7156a130a9",
"name": "B-P1-PUESTO-109",
"posterCode": "B-P1-PUESTO-109",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2240,
"bottomRightX": 194,
"bottomRightY": 2289
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ba7f0d86-f96f-46c1-8230-1e73b77e9ab3",
"name": "B-P1-PUESTO-120",
"posterCode": "B-P1-PUESTO-120",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2481,
"bottomRightX": 442,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "bcb0dcaa-06f6-4a3c-9ec1-1cbe2e51b308",
"name": "B-P1-PUESTO-66",
"posterCode": "B-P1-PUESTO-66",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 997,
"bottomRightX": 194,
"bottomRightY": 1045
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "bd3f3415-2071-479b-b547-da0e1a9389c9",
"name": "Sala Mar Aral",
"posterCode": "B-P1-PUESTO-5",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 720,
"bottomRightX": 1372,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "bd911e65-86fd-4a2d-9684-aa3186925326",
"name": "B-P1-PUESTO-24",
"posterCode": "B-P1-PUESTO-24",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 2560,
"bottomRightX": 1207,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "be2798f7-a1d2-4d88-ba78-4582d64208af",
"name": "B-P1-PUESTO-57",
"posterCode": "B-P1-PUESTO-57",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 798,
"bottomRightX": 276,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "be5c11b6-d33e-45c6-bfe2-a6f4d57d55cb",
"name": "B-P1-PUESTO-42",
"posterCode": "B-P1-PUESTO-42",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 200,
"topLeftY": 259,
"bottomRightX": 248,
"bottomRightY": 307
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "bf641b14-aeee-401d-a08b-8d810fc0971b",
"name": "B-P1-PUESTO-119",
"posterCode": "B-P1-PUESTO-119",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2481,
"bottomRightX": 359,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "c152a639-b80e-4b2e-a078-b17361feaeb6",
"name": "B-P1-PUESTO-95",
"posterCode": "B-P1-PUESTO-95",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 1800,
"bottomRightX": 359,
"bottomRightY": 1848
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "c8dc2684-c6ad-42c3-b1db-cdde65c1531d",
"name": "B-P1-PUESTO-65",
"posterCode": "B-P1-PUESTO-65",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 997,
"bottomRightX": 276,
"bottomRightY": 1045
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ca295c22-83b9-424a-9b29-82cd89c6cded",
"name": "B-P1-PUESTO-110",
"posterCode": "B-P1-PUESTO-110",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2240,
"bottomRightX": 276,
"bottomRightY": 2289
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ca36a13f-b4f2-47e0-abbd-9d3c60dcc508",
"name": "B-P1-PUESTO-27",
"posterCode": "B-P1-PUESTO-27",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 2560,
"bottomRightX": 1454,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "cf44f5a1-39db-44cf-9fea-2988db1a47a7",
"name": "B-P1-PUESTO-35",
"posterCode": "B-P1-PUESTO-35",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 2759,
"bottomRightX": 1454,
"bottomRightY": 2808
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "cf6665a4-3310-4b1f-98d7-a8aa3b2f9997",
"name": "Polo Norte",
"posterCode": "B-P1-PUESTO-4",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 720,
"bottomRightX": 1454,
"bottomRightY": 767
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "d2a65711-2bbc-4538-8237-2f06d4a5533e",
"name": "B-P1-PUESTO-73",
"posterCode": "B-P1-PUESTO-73",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1238,
"bottomRightX": 276,
"bottomRightY": 1288
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "d2a8ed87-cdef-4c46-b9bf-f8396bfc5bf5",
"name": "B-P1-PUESTO-50",
"posterCode": "B-P1-PUESTO-50",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 557,
"bottomRightX": 194,
"bottomRightY": 606
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "d3a42167-28ab-499a-af46-1d25d1f680d6",
"name": "Mar Mediterráneo",
"posterCode": "B-P1-PUESTO-8",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 797,
"bottomRightX": 1207,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "d4e2f1cf-d3dc-4c2c-8e39-a8ccd90e09d5",
"name": "B-P1-PUESTO-28",
"posterCode": "B-P1-PUESTO-28",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 2680,
"bottomRightX": 1454,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "db7bfb48-5a7c-42bd-ac01-040b7160ad9c",
"name": "B-P1-PUESTO-47",
"posterCode": "B-P1-PUESTO-47",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 557,
"bottomRightX": 442,
"bottomRightY": 606
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "e00a46c2-d7d9-4986-9ed6-2bda40ee5f50",
"name": "NA",
"posterCode": "B-P1-PUESTO-12",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 919,
"bottomRightX": 1454,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "e145c3bc-47cd-4ac1-b3b3-b3808d0232f5",
"name": "B-P1-PUESTO-89",
"posterCode": "B-P1-PUESTO-89",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 1679,
"bottomRightX": 276,
"bottomRightY": 1727
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "e3c2860b-8b26-4a51-9c53-db815aeea799",
"name": "B-P1-PUESTO-55",
"posterCode": "B-P1-PUESTO-55",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 798,
"bottomRightX": 442,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "e442871a-c6ce-456c-9386-4f21cc140ecb",
"name": "B-P1-PUESTO-78",
"posterCode": "B-P1-PUESTO-78",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1359,
"bottomRightX": 442,
"bottomRightY": 1407
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "e8d60a63-d59d-4c57-8c1f-87048cc4e09c",
"name": "Sala Alaska",
"posterCode": "B-P1-PUESTO-10",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 797,
"bottomRightX": 1372,
"bottomRightY": 847
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ebcdd8ff-4b7f-4fed-9782-93d12ee77806",
"name": "B-P1-PUESTO-125",
"posterCode": "B-P1-PUESTO-125",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2680,
"bottomRightX": 194,
"bottomRightY": 2730
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ece3e37f-d451-4f20-81ff-944e8d5bf90c",
"name": "B-P1-PUESTO-124",
"posterCode": "B-P1-PUESTO-124",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 2559,
"bottomRightX": 194,
"bottomRightY": 2609
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ee8132e2-0313-4627-a6ac-4bc6e25ddd33",
"name": "B-P1-PUESTO-70",
"posterCode": "B-P1-PUESTO-70",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 1159,
"bottomRightX": 442,
"bottomRightY": 1209
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "eea66ab7-a3a7-4f23-95ea-fd56e6f58b26",
"name": "B-P1-PUESTO-13",
"posterCode": "B-P1-PUESTO-13",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1323,
"topLeftY": 919,
"bottomRightX": 1372,
"bottomRightY": 968
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "ef650f77-60e5-47d7-a92a-a6ff65d15b9e",
"name": "B-P1-PUESTO-115",
"posterCode": "B-P1-PUESTO-115",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 227,
"topLeftY": 2318,
"bottomRightX": 276,
"bottomRightY": 2368
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "f045489e-b836-49e4-9aea-ce2b37102d78",
"name": "B-P1-PUESTO-48",
"posterCode": "B-P1-PUESTO-48",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 557,
"bottomRightX": 359,
"bottomRightY": 606
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "f06bc537-08bc-473b-89c2-237436850514",
"name": "B-P1-PUESTO-45",
"posterCode": "B-P1-PUESTO-45",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 478,
"bottomRightX": 359,
"bottomRightY": 527
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "f1353401-a38a-47aa-a6c9-00ef99da2ac0",
"name": "B-P1-PUESTO-112",
"posterCode": "B-P1-PUESTO-112",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 393,
"topLeftY": 2240,
"bottomRightX": 442,
"bottomRightY": 2289
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "f44129d9-1805-4c72-b25a-9f72c66af418",
"name": "B-P1-PUESTO-23",
"posterCode": "B-P1-PUESTO-23",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1158,
"topLeftY": 2481,
"bottomRightX": 1207,
"bottomRightY": 2529
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "f69ac06a-c060-43be-947f-ff0d31901583",
"name": "B-P1-PUESTO-93",
"posterCode": "B-P1-PUESTO-93",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 144,
"topLeftY": 1800,
"bottomRightX": 194,
"bottomRightY": 1848
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "f8e4ba73-b6c9-4c3c-b52b-35d3f8fdc6cc",
"name": "B-P1-PUESTO-111",
"posterCode": "B-P1-PUESTO-111",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 309,
"topLeftY": 2240,
"bottomRightX": 359,
"bottomRightY": 2289
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
},
{
"id": "fd8ed5ea-8627-42a1-bc78-86a99c1ffd5d",
"name": "B-P1-PUESTO-19",
"posterCode": "B-P1-PUESTO-19",
"image": "https://api.develop.bookkercorp.com/api/v1/bookker/download/organizations/8aee218a-fce2-4900-9410-00f485a2729e/users/5432a51ff76e4e349a0fcd6759eeaa0a.jpeg",
"mapCoordinates": {
"topLeftX": 1406,
"topLeftY": 998,
"bottomRightX": 1454,
"bottomRightY": 1046
},
"approachable": false,
"floor": {
"id": "14ab4017-1261-46ff-af05-eadf5d3d69e8"
},
"subcategory": {
"id": "db5d3245-1df2-42e2-9c6e-51bfadba948b"
},
"visible": true
}
]
}
BookingDay
Properties
| Name | Type | Description |
|---|---|---|
| startDate | Long | Fecha y hora en milisegundos del inicio de la reserva. |
| endDate | Long | Fecha y hora en milisegundos del fin de la reserva. |
{
"startDate": 1561557600000,
"endDate": 1561559400000
}