POST api/EmployeePayment/Add
Request Information
URI Parameters
None.
Body Parameters
EmployeeModel| Name | Description | Type | Additional information |
|---|---|---|---|
| paid_amount | decimal number |
None. |
|
| branch_id | integer |
None. |
|
| employee_id | integer |
None. |
|
| id | integer |
None. |
|
| fk_id | integer |
None. |
|
| order_id | integer |
None. |
|
| process_by | integer |
None. |
|
| debit | decimal number |
None. |
|
| credit | decimal number |
None. |
|
| created_date | date |
None. |
|
| created_by | integer |
None. |
|
| descp | string |
None. |
|
| payment_type | string |
None. |
|
| account_type | string |
None. |
|
| TotalRows | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"paid_amount": 1.0,
"branch_id": 2,
"employee_id": 3,
"id": 4,
"fk_id": 5,
"order_id": 6,
"process_by": 7,
"debit": 8.0,
"credit": 9.0,
"created_date": "2025-12-18T16:09:58.3092097+05:00",
"created_by": 11,
"descp": "sample string 12",
"payment_type": "sample string 13",
"account_type": "sample string 14",
"TotalRows": 15
}
application/xml, text/xml
Sample:
<EmployeeModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OneLaundry.Models"> <TotalRows>15</TotalRows> <account_type>sample string 14</account_type> <branch_id>2</branch_id> <created_by>11</created_by> <created_date>2025-12-18T16:09:58.3092097+05:00</created_date> <credit>9</credit> <debit>8</debit> <descp>sample string 12</descp> <employee_id>3</employee_id> <fk_id>5</fk_id> <id>4</id> <order_id>6</order_id> <paid_amount>1</paid_amount> <payment_type>sample string 13</payment_type> <process_by>7</process_by> </EmployeeModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.