GET api/{programid}/v2/Budget/GetBillableRate/{consumerNumber}/{employeeNumber}/{serviceCode}

Retrieves the rate information for a given employee / consumer / service

Request Information

URI Parameters

NameDescriptionTypeAdditional information
programid

PPL Program Id

string

Required

consumerNumber

PPL Consumer No

string

Required

employeeNumber

PPL Employee No

string

Required

serviceCode

Srevice Code

string

Required

Body Parameters

None.

Response Information

Resource Description

BillableRateQueryModel
NameDescriptionTypeAdditional information
BillableRate

decimal number

None.

OvertimeBillableRate

decimal number

None.

Response Formats

application/json, text/json

Sample:
{
  "BillableRate": 1.0,
  "OvertimeBillableRate": 2.0
}

application/xml, text/xml

Sample:
<BillableRateQueryModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPL.Services.Models.v2.Budget.QueryModels">
  <BillableRate>1</BillableRate>
  <OvertimeBillableRate>2</OvertimeBillableRate>
</BillableRateQueryModel>