POST api/Profession/GetAllJobProfilesByProfessionType

Request Information

URI Parameters

None.

Body Parameters

SearchJobProfiles
NameDescriptionTypeAdditional information
SourceId

integer

None.

Source

string

None.

ProfessionTypeId

integer

None.

ProfessionType

string

None.

SpecializationId

integer

None.

ProfessionSpecialization

string

None.

CountryId

integer

None.

ProvinceId

integer

None.

CityId

integer

None.

CountyId

integer

None.

TownId

integer

None.

ReviewOptionId

integer

None.

IsVerified

boolean

None.

UserId

integer

None.

UserProfileId

integer

None.

PageNumber

integer

None.

EntriesPerPage

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "SourceId": 1,
  "Source": "sample string 1",
  "ProfessionTypeId": 1,
  "ProfessionType": "sample string 2",
  "SpecializationId": 1,
  "ProfessionSpecialization": "sample string 3",
  "CountryId": 1,
  "ProvinceId": 1,
  "CityId": 1,
  "CountyId": 1,
  "TownId": 1,
  "ReviewOptionId": 1,
  "IsVerified": true,
  "UserId": 1,
  "UserProfileId": 1,
  "PageNumber": 1,
  "EntriesPerPage": 1
}

application/xml, text/xml

Sample:
<SearchJobProfiles xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Model">
  <CityId>1</CityId>
  <CountryId>1</CountryId>
  <CountyId>1</CountyId>
  <EntriesPerPage>1</EntriesPerPage>
  <IsVerified>true</IsVerified>
  <PageNumber>1</PageNumber>
  <ProfessionSpecialization>sample string 3</ProfessionSpecialization>
  <ProfessionType>sample string 2</ProfessionType>
  <ProfessionTypeId>1</ProfessionTypeId>
  <ProvinceId>1</ProvinceId>
  <ReviewOptionId>1</ReviewOptionId>
  <Source>sample string 1</Source>
  <SourceId>1</SourceId>
  <SpecializationId>1</SpecializationId>
  <TownId>1</TownId>
  <UserId>1</UserId>
  <UserProfileId>1</UserProfileId>
</SearchJobProfiles>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Result
NameDescriptionTypeAdditional information
Status

ResultStatus

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 100,
  "Message": "sample string 1",
  "Data": {}
}

application/xml, text/xml

Sample:
<Result xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessAccessLayer.Generics">
  <Data />
  <Message>sample string 1</Message>
  <Status>Success</Status>
</Result>