Create (POST) Labor Code
Use this API to create a new labor code in Account Configuration.
To create a new labor code:
Execute a POST command on the endpoint
{{url}}/accountConfiguration/laborCode, specifying the data for the new
labor code in the request body.
For example, here is a request, using cURL, to create a new labor code.
curl --request POST \ --url 'https://{{url}}/accountConfiguration/laborCode' \ --header 'authorization: Bearer {{oauth_token}}' \ --header 'content-type: application/json' \ --data '{ "LCLevel": 1, "Code": "U", "Description": "Urban Design" }'
A successful call status of 201 returns the JSON representation for the newly created labor code.