Find JobIds by Tags.
Find a list of job IDs by tags.
Function
searchJobByTag()
Url
- POST:
/PuresendService/v1/searchJobByTag
Parameters
- tag:
String
- search tag.
- limit:
int
- constrains the number of return job ids.
- offset:
int
- skips the offset job ids.
Return
- jobIds:
int[]
- job IDs array
Exception
- java.lang.Exception
Documentation
- Retrieves a list of job IDs by tag.
Examples
{
"tag": "tagName",
"limit": 3,
"offset": 0
}
{
"jobIds": [
12345,
12346,
12347
]
}