POST api/JobPosts/MarketPriceForJobs
Request Information
URI Parameters
None.
Body Parameters
JobSkillsInput| Name | Description | Type | Additional information |
|---|---|---|---|
| SkillID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"SkillID": 1
}
application/xml, text/xml
Sample:
<JobSkillsInput xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models"> <SkillID>1</SkillID> </JobSkillsInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
MarketPricePerJobTitle| Name | Description | Type | Additional information |
|---|---|---|---|
| JobSkillsList | Collection of JobSkillsMinMAxRange |
None. |
|
| IsCallSuccessful | boolean |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"JobSkillsList": [
{
"SkillName": "sample string 1",
"MarketPriceRange": {
"MinRange": 1.0,
"MaxRange": 2.0
}
},
{
"SkillName": "sample string 1",
"MarketPriceRange": {
"MinRange": 1.0,
"MaxRange": 2.0
}
}
],
"IsCallSuccessful": true,
"Message": "sample string 2"
}
application/xml, text/xml
Sample:
<MarketPricePerJobTitle xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SoftbreaksAPI.Models">
<IsCallSuccessful>true</IsCallSuccessful>
<Message>sample string 2</Message>
<JobSkillsList>
<JobSkillsMinMAxRange>
<MarketPriceRange>
<MaxRange>2</MaxRange>
<MinRange>1</MinRange>
</MarketPriceRange>
<SkillName>sample string 1</SkillName>
</JobSkillsMinMAxRange>
<JobSkillsMinMAxRange>
<MarketPriceRange>
<MaxRange>2</MaxRange>
<MinRange>1</MinRange>
</MarketPriceRange>
<SkillName>sample string 1</SkillName>
</JobSkillsMinMAxRange>
</JobSkillsList>
</MarketPricePerJobTitle>