Picture

/api/v2/payrolls/employee/financials

Picture

Authorization Bearer Token

Token
<access_token>

Request Parameter

Name
Type
Required
Description
employeeNo
String
Required
Employee No
companyCode
String
Required
Company Code
financialItemCode
String
Required
Financial Item Code
amount
Numeric
Required
Total Amount
isCalculate
Boolean
Required
Is Calculate

Example Request

curl --location --request POST 'https://api.veniocrm.com/empeo/api/v2/payrolls/employee/financials' \
--header 'Authorization: Bearer <token>' \
--data-raw '{
"employeeNo": "1000",
"companyCode": "GO00005",
"financialItemCode": "F100001",
"amount": 70000,
"isCalculate": true
}'
Download postman Collection

Response

Name
Type
Description
status
Status
data
Any Object
Response

Status

Name
Type
Description
code
Numeric
Http status code
description
String
status description

Example Response

{
"status": {
"code": 200,
"description": "Save successfully!"
},
"data": {}
}
© Copyright 2021 Gofive Co., Ltd. All right reserved.