GET api/clients/vacancies/{roleId}/ratecard?clientId={clientId}
Get the assigned standard rate card for a job role
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| roleId | string |
Required |
|
| clientId | string |
None. |
Body Parameters
None.
Response Information
Resource Description
JobRoleRateCardDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| RateCardName | string |
None. |
|
| RateCardId | integer |
None. |
|
| JobRoleId | string |
None. |
|
| DailySupplyDayRate | decimal number |
None. |
|
| DailySupplyHalfDayRate | decimal number |
None. |
|
| LongTermDailyRate | decimal number |
None. |
|
| LongTermHalfDayRate | decimal number |
None. |
|
| HourlyRate | decimal number |
None. |
|
| LongTermOfferText | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"RateCardName": "sample string 1",
"RateCardId": 2,
"JobRoleId": "sample string 3",
"DailySupplyDayRate": 1.0,
"DailySupplyHalfDayRate": 1.0,
"LongTermDailyRate": 1.0,
"LongTermHalfDayRate": 1.0,
"HourlyRate": 1.0,
"LongTermOfferText": "sample string 4"
}