GET api/Lookup/GetJobList?page={page}&clientid={clientid}&filter={filter}¤t={current}&sortby={sortby}&permissionid={permissionid}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| page | integer |
Default value is 1 |
|
| clientid | integer |
Default value is 0 |
|
| filter | string |
Default value is |
|
| current | boolean |
Default value is False |
|
| sortby | integer |
None. |
|
| permissionid | integer |
Default value is 320 |
Body Parameters
None.
Response Information
Resource Description
Collection of APIDataLookupJob| Name | Description | Type | Additional information |
|---|---|---|---|
| JobID | integer |
None. |
|
| JobCode | string |
None. |
|
| JobDescription | string |
None. |
|
| Billable | boolean |
None. |
|
| Current | boolean |
None. |
|
| ProposalNumber | string |
None. |
|
| Client | APIDataLinkClient |
None. |
|
| PageLink | APIPageLink |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"JobID": 1,
"JobCode": "sample string 2",
"JobDescription": "sample string 3",
"Billable": true,
"Current": true,
"ProposalNumber": "sample string 6",
"Client": {
"ClientID": 1,
"ClientCode": "sample string 2",
"ClientAbbreviation": "sample string 3",
"ClientName": "sample string 4"
},
"PageLink": {
"TotalRows": 1,
"TotalPages": 2
}
},
{
"JobID": 1,
"JobCode": "sample string 2",
"JobDescription": "sample string 3",
"Billable": true,
"Current": true,
"ProposalNumber": "sample string 6",
"Client": {
"ClientID": 1,
"ClientCode": "sample string 2",
"ClientAbbreviation": "sample string 3",
"ClientName": "sample string 4"
},
"PageLink": {
"TotalRows": 1,
"TotalPages": 2
}
}
]
application/xml, text/xml
Sample:
<ArrayOfAPIDataLookupJob xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Abtrac6.API.APIDataModels">
<APIDataLookupJob>
<Billable>true</Billable>
<Client>
<ClientAbbreviation>sample string 3</ClientAbbreviation>
<ClientCode>sample string 2</ClientCode>
<ClientID>1</ClientID>
<ClientName>sample string 4</ClientName>
</Client>
<Current>true</Current>
<JobCode>sample string 2</JobCode>
<JobDescription>sample string 3</JobDescription>
<JobID>1</JobID>
<PageLink>
<TotalPages>2</TotalPages>
<TotalRows>1</TotalRows>
</PageLink>
<ProposalNumber>sample string 6</ProposalNumber>
</APIDataLookupJob>
<APIDataLookupJob>
<Billable>true</Billable>
<Client>
<ClientAbbreviation>sample string 3</ClientAbbreviation>
<ClientCode>sample string 2</ClientCode>
<ClientID>1</ClientID>
<ClientName>sample string 4</ClientName>
</Client>
<Current>true</Current>
<JobCode>sample string 2</JobCode>
<JobDescription>sample string 3</JobDescription>
<JobID>1</JobID>
<PageLink>
<TotalPages>2</TotalPages>
<TotalRows>1</TotalRows>
</PageLink>
<ProposalNumber>sample string 6</ProposalNumber>
</APIDataLookupJob>
</ArrayOfAPIDataLookupJob>