upload_tag_image

The upload_tag_image function is used to attach an image to a tag. The tags are used when assigning or separating passengers.

Copied!
svc=resource/upload_tag_image&params={"itemId":<long>,
				      				  "tagId":<long>,
				      				  "eventHash":"<text>",
									  "oldItemId":<long>,
									  "oldTagId":<uint>}
                              &sid="<text>"

Parameters

NameDescription
itemIdResource ID.
tagIdTag ID.
eventHash

The name of the event which should be generated after attaching the image. Optional parameter. 

oldItemIdThe resource ID from which the tag (passenger) image should be copied. Optional parameter.
oldTagIdThe tag ID the image of which should be copied. Optional parameter.

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

Example:

Copied!
Request URL: https://hst-api.wialon.com/wialon/ajax.html?svc=resource/upload_tag_image
Request Method: POST
Host: hst-api.wialon.com
Connection: keep-alive
Content-Length: 31755
Cache-Control: no-cache
Content-Type: multipart/form-data; boundary=----WebKitFormBoundaryB4wasXYYHLTNXHBl
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

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

{"itemId":717314,"tagId":17,"eventHash":"jUploadForm1372768554999"}
------WebKitFormBoundaryB4wasXYYHLTNXHBl
Content-Disposition: form-data; name="eventHash"

jUploadForm1372768554999
------WebKitFormBoundaryB4wasXYYHLTNXHBl
Content-Disposition: form-data; name="tags_dlg_props_upload_image"; filename="image.jpg"
Content-Type: image/jpeg

------WebKitFormBoundaryB4wasXYYHLTNXHBl--

It is also possible to copy an image from another tag (passenger). To do this, execute a request with no image but with the oldItemId and oldTagId 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 item with the desired ACL (ADF_ACL_AVL_RES_EDIT_TAGS) or the item/tag with the old_id not found (when copying the image from another tag).
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>,			/* tag ID (-1 if unknown) */
			"d":{				/* data */
				"hash":"<text>"		/* the uploading is complete */
			}
		}
	]
}
Download PDF file
Download Word document

See also