Read (GET) Labor Codes

Use this API to read all labor codes currently in Account Configuration.

To get all labor codes:

Execute a GET command on the endpoint {{url}}/accountConfiguration/laborCode/.

For example, using cURL to submit the GET request, here is an example of how to get all labor codes:

curl --request GET \
  --url 'https://{{url}}/accountConfiguration/laborCode' \
  --header 'authorization: Bearer {{oauth_token}}' \
  --header 'content-type: application/json'

The call returns one JSON structure like the following for each labor code.

{
        "LCLevel": 3,
        "Code": "AX",
        "Description": "Graphics Design"
}