Find JobIds.

Find a list of job IDs by name.


Function

  • findJobIds()

Url

  • POST: /PuresendService/v1/findJobIds

Parameters

  • nameFilter: String
    • search string
  • exactMatch: boolean
    • set exact match or not.

Return

  • jobIds: int[]
    • Array of job IDs

Exception

  • java.lang.Exception

Documentation

  • Retrieves a list of job IDs by name.
  • Supports wildcard name searches.

Examples

{
    "nameFilter": "keyword here",
    "exactMatch": false
}
{
    "jobIds": [
        12345,
        12346,
        12347
    ]
}