CRUD and List operations


Artifacts that support CRUD operations follow standard REST principles by accessing the resource through the URLs:

  • Create: POST /<resourceName>
  • Read: GET /<resourceName>/{id}
  • Update: PUT /<resourceName>/{id}
  • Delete: DELETE /<resourceName>/{id}
  • List: GET /<resourceName>

The Read operation returns a JSON based object while the Create and Update operations requires a JSON based object in the request body. All CRUD operations require a valid token header to be present.


 

Tip: For faster searching, add an asterisk to the end of your partial query. Example: cert*