GET api/OutBoundJobs/{id}

Get out bound job specified by 'id'.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

Job ID

string

Required

Body Parameters

None.

Response Information

Resource Description

Specified out bound job.

OutBoundJob
NameDescriptionTypeAdditional information
JobID

Job unique identifier

string

None.

JobName

Name of the job

string

None.

JobBinary

Binary containing sqlite db for the job

Collection of byte

None.

MD5

Validation hash of the job's sqlite db

string

None.

UserID

User unique identifier for job owner

string

None.

Response Formats

application/json, text/json

Sample:
{
  "JobID": "sample string 1",
  "JobName": "sample string 2",
  "JobBinary": "QEA=",
  "MD5": "sample string 3",
  "UserID": "sample string 5"
}

application/xml, text/xml

Sample:
<OutBoundJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TGTWebServices.Models">
  <JobBinary>QEA=</JobBinary>
  <JobID>sample string 1</JobID>
  <JobName>sample string 2</JobName>
  <MD5>sample string 3</MD5>
  <UserID>sample string 5</UserID>
</OutBoundJob>