You are viewing an old version of this page. View the current version.
Compare with Current View Page History
« Previous Version 4 Next »
Resources are the image files associated with a floor. The .svg or .pdf asset URL and the associated metadata are often referred to as a map.
The example request below creates a map for the floor named Level One. The example response returns the newly created resource's ID.
The map resource for Level One will be associated with the Level One floor.
POST /v1.1/resources HTTP/1.1 Host: map-api.phunware.com X-Auth: see MaaS Security Protocol v1.0Content-Type: application/json
{ "floorId": 17, "pdfUrl": "http://image.com/level1.pdf", "svgUrl": "http://image.com/level1.svg", "zoomLevel": 0 }
HTTP/1.1 200 OK Vary: Accept-Encoding Content-Type: application/json; charset=utf-8 Date: Tue, 20 May 2015 16:06:54 GMT Connection: keep-alive
{ "data": { "id": 71 } }
ON THIS PAGE