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.