GET api/TimesheetExternal/{authCode}/EstimatedCharges

Request Information

URI Parameters

NameDescriptionTypeAdditional information
authCode

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of EstimatedChargeModel
NameDescriptionTypeAdditional information
ProductCode

string

None.

ProductName

string

None.

Quantity

decimal number

None.

CharageRate

decimal number

None.

ChargeTotal

decimal number

None.

UOM

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ProductCode": "sample string 1",
    "ProductName": "sample string 2",
    "Quantity": 1.0,
    "CharageRate": 1.0,
    "ChargeTotal": 1.0,
    "UOM": "sample string 3"
  },
  {
    "ProductCode": "sample string 1",
    "ProductName": "sample string 2",
    "Quantity": 1.0,
    "CharageRate": 1.0,
    "ChargeTotal": 1.0,
    "UOM": "sample string 3"
  }
]

text/xml

Sample:
<ArrayOfEstimatedChargeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO">
  <EstimatedChargeModel>
    <CharageRate>1</CharageRate>
    <ChargeTotal>1</ChargeTotal>
    <ProductCode>sample string 1</ProductCode>
    <ProductName>sample string 2</ProductName>
    <Quantity>1</Quantity>
    <UOM>sample string 3</UOM>
  </EstimatedChargeModel>
  <EstimatedChargeModel>
    <CharageRate>1</CharageRate>
    <ChargeTotal>1</ChargeTotal>
    <ProductCode>sample string 1</ProductCode>
    <ProductName>sample string 2</ProductName>
    <Quantity>1</Quantity>
    <UOM>sample string 3</UOM>
  </EstimatedChargeModel>
</ArrayOfEstimatedChargeModel>

multipart/form-data

Sample:
<ArrayOfEstimatedChargeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RandstadWebAPI.Models.DTO"><EstimatedChargeModel><CharageRate>1</CharageRate><ChargeTotal>1</ChargeTotal><ProductCode>sample string 1</ProductCode><ProductName>sample string 2</ProductName><Quantity>1</Quantity><UOM>sample string 3</UOM></EstimatedChargeModel><EstimatedChargeModel><CharageRate>1</CharageRate><ChargeTotal>1</ChargeTotal><ProductCode>sample string 1</ProductCode><ProductName>sample string 2</ProductName><Quantity>1</Quantity><UOM>sample string 3</UOM></EstimatedChargeModel></ArrayOfEstimatedChargeModel>