POST api/job/search

Request Information

URI Parameters

None.

Body Parameters

JobSearchRequest
NameDescriptionTypeAdditional information
JobID

integer

None.

AccountID

integer

None.

BusinessPartnerCode

string

None.

StatusID

integer

None.

ProductGroupID

integer

None.

ProductID

integer

None.

RejectionID

integer

None.

StageID

integer

None.

InContract

boolean

None.

FromDate

date

None.

ToDate

date

None.

SortBy

integer

None.

ClientID

integer

None.

UserTypeID

string

None.

Request Formats

application/json, text/json

Sample:
{
  "JobID": 1,
  "AccountID": 2,
  "BusinessPartnerCode": "sample string 3",
  "StatusID": 4,
  "ProductGroupID": 5,
  "ProductID": 6,
  "RejectionID": 7,
  "StageID": 8,
  "InContract": true,
  "FromDate": "2026-08-14T17:39:59.3761906+01:00",
  "ToDate": "2026-08-14T17:39:59.3761906+01:00",
  "SortBy": 10,
  "ClientID": 11,
  "UserTypeID": "sample string 12"
}

application/xml, text/xml

Sample:
<JobSearchRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PricingWebAPI.Models">
  <AccountID>2</AccountID>
  <BusinessPartnerCode>sample string 3</BusinessPartnerCode>
  <ClientID>11</ClientID>
  <FromDate>2026-08-14T17:39:59.3761906+01:00</FromDate>
  <InContract>true</InContract>
  <JobID>1</JobID>
  <ProductGroupID>5</ProductGroupID>
  <ProductID>6</ProductID>
  <RejectionID>7</RejectionID>
  <SortBy>10</SortBy>
  <StageID>8</StageID>
  <StatusID>4</StatusID>
  <ToDate>2026-08-14T17:39:59.3761906+01:00</ToDate>
  <UserTypeID>sample string 12</UserTypeID>
</JobSearchRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.