Task ID List

Prev Next

Resource URL below fetches the list of task id's associated with a job id.

Resource URL

GET https://<TIS_IP>/php/getTaskIdList.php

Input parameters

The following HTTP headers should be specified in the resource URL request:

  • Accept: application/vnd.ve.v1.0+json

  • Content-Type: application/json

  • VE-SDK-API: Base64 encoded "session:user id" string

Input parameter

Description

jobId

Serves as an identifier for the previously submitted file.

Output parameters

Output parameter

Description

result

If a zip file with two samples is submitted, then the response contains task id's of the two samples.

If a single file is submitted, then the response contains a task id of the single sample.

Example

Input

https:// <TIS_IP>/php/getTaskIdList.php?jobId=64

Output

{"success":true, "result":{"taskIdList":"201"}}

Input

https:// <TIS_IP>/php/getTaskIdList.php?jobId=65

Output

{"success":true, "result":{"taskIdList":"202,203"}}

In the above example, if the job id of a zip file is passed, then the response contains task id's of samples in the zip file.