Employment Types
This API is to get Employment type list. This is an authendicated API so we need to pass bearer token in request header to access the data.
Headers
-
application/json
-
application/json
GET
/employment-type/list
curl \
-X GET https://api-console.logezy.co/v1/employment-type/list \
-H "Content-Type: Bearer your-access-token" \
-H "Accept: application/json"
Response examples (200)
{
"data": [
{
"id": 1,
"code": "EMPDEM1",
"title": "Private Limited",
"value": "0.00",
"status": "active",
"created_at": "2020-05-22 19:28:26",
"created_by": null,
"is_default": 1,
"is_deleted": 0,
"staff_rate": "0.00",
"updated_at": "2020-05-22 19:28:26",
"description": null,
"employment_type": "Private Limited",
"employment_type_id": 1
}
],
"status": "success",
"message": "Employment types retrieved successfully."
}