POST api/GetAssociateLeaveBalance
Request Information
URI Parameters
None.
Body Parameters
AssociateLeaveBalanceModel| Name | Description | Type | Additional information |
|---|---|---|---|
| InnovID | integer |
None. |
|
| GNETAssociateID | string |
None. |
|
| Month | integer |
None. |
|
| Year | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"InnovID": 1,
"GNETAssociateID": "sample string 2",
"Month": 3,
"Year": 4
}
application/xml, text/xml
Sample:
<AssociateLeaveBalanceModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models"> <GNETAssociateID>sample string 2</GNETAssociateID> <InnovID>1</InnovID> <Month>3</Month> <Year>4</Year> </AssociateLeaveBalanceModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
AssociateLeaveBalanceResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| PL | decimal number |
None. |
|
| CL | decimal number |
None. |
|
| SL | decimal number |
None. |
|
| PLText | string |
None. |
|
| CLText | string |
None. |
|
| SLText | string |
None. |
|
| status | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"PL": 1.1,
"CL": 2.1,
"SL": 3.1,
"PLText": "sample string 4",
"CLText": "sample string 5",
"SLText": "sample string 6",
"status": "sample string 7",
"Message": "sample string 8"
}
application/xml, text/xml
Sample:
<AssociateLeaveBalanceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/RESTWebAPIForPaperlessOnboarding.Models"> <CL>2.1</CL> <CLText>sample string 5</CLText> <Message>sample string 8</Message> <PL>1.1</PL> <PLText>sample string 4</PLText> <SL>3.1</SL> <SLText>sample string 6</SLText> <status>sample string 7</status> </AssociateLeaveBalanceResponse>