Income Endpoints
Manage income records for employees and organizations.
Base Pathβ
/api/income
Endpointsβ
List Incomeβ
GET /api/income
Authorization: Bearer {token}
Query Parameters:
| Parameter | Type | Description |
|---|---|---|
employeeId | UUID | Filter by employee |
startDate | Date | From date |
endDate | Date | To date |
page | number | Page number |
limit | number | Items per page |
Get Income by IDβ
GET /api/income/:id
Authorization: Bearer {token}
Create Income Recordβ
POST /api/income
Authorization: Bearer {token}
Request Body:
{
"amount": 5000,
"currency": "USD",
"valueDate": "2025-01-31",
"notes": "Project milestone payment",
"isBonus": false,
"clientId": "contact-uuid",
"employeeId": "employee-uuid"
}
Update Incomeβ
PUT /api/income/:id
Authorization: Bearer {token}
Delete Incomeβ
DELETE /api/income/:id
Authorization: Bearer {token}
Permissionsβ
| Action | Required Permission |
|---|---|
| View | ORG_INCOMES_VIEW |
| Edit | ORG_INCOMES_EDIT |
Related Pagesβ
- Expense Endpoints β expenses
- Income Management β feature guide