Classification Library
catenda projects support classification libraries use a classification library to store classification references all items in the classification library are library items list classification references use the list library items endpoint with the following supported parameters to limit the result associations search create a classification reference use the create library item endpoint to create a classification reference prepare request body set the necessary fields of the json request body { "name" "classification name", "type" "classification", "classification" { "identification" "a1", "description" "classification description" } } make request send a post request to the endpoint curl x post \\ 'https //api catenda com/v2/projects/{project id}/libraries/{library id}/items' \\ \ header 'accept application/json' \\ \ header 'authorization bearer your access token' \\ \ header 'content type application/json' \\ \ data raw '{ "name" "classification name", "type" "classification", "classification" { "identification" "a1", "description" "classification description" } }'