Retrieve a list of all available employment types.
A list of employment types.
const response = await fetch('/employment_types', { method: 'GET', headers: { "apikey": "ApiKeyAuth <apiKey>" }, }); const data = await response.json();
{ "ok": true, "data": [ "text" ] }