HolidaysApi

interface HolidaysApi

Functions

Link copied to clipboard
abstract suspend fun createNewHoliday(postHolidaysRequest: PostHolidaysRequest): PostHolidaysResponse

Create a Holiday Mandatory Fields: name, description, fromDate, toDate, repaymentsRescheduledTo, offices Responses:

Link copied to clipboard
abstract suspend fun delete7(holidayId: Long): DeleteHolidaysHolidayIdResponse

Delete a Holiday This API allows to delete a holiday. This is a soft delete the deleted holiday status is marked as deleted. Responses:

Link copied to clipboard
abstract suspend fun handleCommands1(holidayId: Long, body: Any, command: String? = null): PostHolidaysHolidayIdResponse

Activate a Holiday Always Holidays are created in pending state. This API allows to activate a holiday. Only the active holidays are considered for rescheduling the loan repayment. Responses:

Link copied to clipboard
abstract suspend fun retrieveAllHolidays(officeId: Long? = null, fromDate: String? = null, toDate: String? = null, locale: String? = null, dateFormat: String? = null): List<GetHolidaysResponse>

List Holidays Example Requests: holidays?officeId=1 Responses:

Link copied to clipboard
abstract suspend fun retrieveOne7(holidayId: Long): GetHolidaysResponse

Retrieve a Holiday Example Requests: holidays/1 Responses:

Responses:

Link copied to clipboard
abstract suspend fun update6(holidayId: Long, putHolidaysHolidayIdRequest: PutHolidaysHolidayIdRequest): PutHolidaysHolidayIdResponse

Update a Holiday If a holiday is in pending state (created and not activated) then all fields are allowed to modify. Once holidays become active only name and descriptions are allowed to modify. Responses: