Skip to content

Workers

Get all workers

Method : GET
Endpoint : /api/workers

[
	{
		"WORKER_ID": 1,
		"WORKER_NAME": "Test",
		"WORKER_SURNAME": "123",
		"WORKER_JOB_TITLE": "",
		"WORKER_PHONE": "",
		"VISIBLE": "T",
		"WAGE": null,
		"PREMIUM_WAGE": null,
		"INDUSTRY_ID": null,
		"LOCATION_ID": 1,
		"IDENTITY_NUMBER": null,
		"IDENTITY_NUMBER_2": null,
		"MOBILE_PHONE": null,
		"EMAIL": "",
		"WORKER_CODE": "",
	}
]

Get single workers

Method : GET
Endpoint : /api/workers/{id}

{
	"WORKER_ID": 1,
	"WORKER_NAME": "Test",
	"WORKER_SURNAME": "123",
	"WORKER_JOB_TITLE": "",
	"WORKER_PHONE": "",
	"VISIBLE": "T",
	"WAGE": null,
	"PREMIUM_WAGE": null,
	"INDUSTRY_ID": null,
	"LOCATION_ID": 1,
	"IDENTITY_NUMBER": null,
	"IDENTITY_NUMBER_2": null,
	"MOBILE_PHONE": null,
	"EMAIL": "",
	"WORKER_CODE": "",
}