POST api/ReimbursementType/UpdateType

Request Information

URI Parameters

None.

Body Parameters

RequestReimbursementTypeUpdate
NameDescriptionTypeAdditional information
ReimbursementTypeId

integer

None.

TypeCode

string

None.

TypeName

string

None.

MaxPerClaim

decimal number

None.

MaxPerMonth

decimal number

None.

ReceiptRequired

boolean

None.

BackdateLimitDays

integer

None.

ApprovalLevels

integer

None.

PayrollPaymentEnabled

boolean

None.

ApplicabilityScope

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ReimbursementTypeId": 1,
  "TypeCode": "sample string 2",
  "TypeName": "sample string 3",
  "MaxPerClaim": 1.0,
  "MaxPerMonth": 1.0,
  "ReceiptRequired": true,
  "BackdateLimitDays": 5,
  "ApprovalLevels": 6,
  "PayrollPaymentEnabled": true,
  "ApplicabilityScope": "sample string 8"
}

application/xml, text/xml

Sample:
<RequestReimbursementTypeUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RRCDR_Attendance_API.Helpers.Custom">
  <ApplicabilityScope>sample string 8</ApplicabilityScope>
  <ApprovalLevels>6</ApprovalLevels>
  <BackdateLimitDays>5</BackdateLimitDays>
  <MaxPerClaim>1</MaxPerClaim>
  <MaxPerMonth>1</MaxPerMonth>
  <PayrollPaymentEnabled>true</PayrollPaymentEnabled>
  <ReceiptRequired>true</ReceiptRequired>
  <TypeCode>sample string 2</TypeCode>
  <TypeName>sample string 3</TypeName>
  <ReimbursementTypeId>1</ReimbursementTypeId>
</RequestReimbursementTypeUpdate>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />