upload_zone_image

The upload_zone_image function is used to attach an image to a geofence as well as to copy an image from one geofence to another.

Copied!
svc=resource/upload_zone_image&params={"itemId":<long>,
				      				   "id":<long>,
				      				   "eventHash":"<text>",
				      				   "oldItemId":<long>,
				      				   "oldZoneId":<uint>}
                              &sid="<text>"

To delete an image, use the update_zone function.

To get an image, use avl_zone_image function.

Parameters

NameDescription
itemIdResource ID.
idGeofence ID.
eventHashThe event name which should be generated after uploading the image.
oldItemIdThe resource ID of the geofence the image of which should be applied. Optional parameter. 
oldZoneIdThe ID of the geofence the image of which should be applied. Optional parameter. 

To upload an image, use a POST request with multiple parameters (multipart/form-data), where one part contains parameters and the other contains the image.

Example:

Copied!
Request URL: https://hst-api.wialon.com/wialon/ajax.html?svc=resource/upload_zone_image
Request Method: POST
Host: hst-api.wialon.com
Connection: keep-alive
Content-Length: 31753
Cache-Control: no-cache
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryX2W1y7AVnQkXQAM0
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
Accept-Charset: windows-1251,utf-8;q=0.7,*;q=0.3
Accept-Encoding: gzip,deflate,sdch
Accept-Language: ru,en-US;q=0.8,en;q=0.6

------WebKitFormBoundaryX2W1y7AVnQkXQAM0
Content-Disposition: form-data; name="params"

{"itemId":717314,"id":1,"eventHash":"jUploadForm1372768029714"}
------WebKitFormBoundaryX2W1y7AVnQkXQAM0
Content-Disposition: form-data; name="eventHash"

jUploadForm1372768029714
------WebKitFormBoundaryX2W1y7AVnQkXQAM0
Content-Disposition: form-data; name="zone_create_upload_image"; filename="zZeVUgLEJXE.jpg"
Content-Type: image/jpeg

------WebKitFormBoundaryX2W1y7AVnQkXQAM0--

It is also possible to copy an image from one geofence to another. To do it, execute a request without an image, but with the oldItemId and oldZoneId fields.

Returned result

If the request is successful, an empty JSON is returned.

Copied!
{ }

If not, an error code is returned. Possible error codes:

CodeDescription
7Failed to fetch the resource with the desired ACL (ADF_ACL_AVL_RES_EDIT_ZONES) or the item/geofence with the oldItemId or oldZoneId not found (when copying image from another geofence).
6Undefined error.
4

Wrong input parameters.

To make sure that the image has been uploaded, execute the avl_evts request:

Copied!
{
	"tm":<uint>,				/* current server time (UTC) */
	"events":[
		{
			"i":<long>,			/* geofence ID (-1 if unknown) */
			"d":{				/* data */
				"hash":"<text>"	/* the uploading is complete */
			}
		}
	]
}

Download PDF file
Download Word document

See also