A new API for Time Attendance has been added with BioStar 2.8.13.
For ‘How to use TA API swagger’, please refer to the link below:
[BioStar 2 TA API] How to use and start BioStar 2 TA API
How to Delete Rules
BioStar 2 TA Rules can be deleted by using TA API.
You can find the /tna/rules API in your TA Swagger.
Part 1. Delete Rules by POST /rules /delete
[POST]: /tna/rules/delete
[Headers]
[Parameters]
Name | Type | *M/O | Explanation | Value |
Ids | Array[string] | M | Rule IDs to be deleted | “1” |
* M – Mandatory, O – Optional
[Example Value/Parameters Model]
{ "ids": [ "5" ] } |
[Response: successful]
{ "message": "Processed Successfully", "message_key": "SUCCESSFUL", "language": "en", "status_code": "SUCCESSFUL" } |
Part 2. Delete Rules via POSTMAN