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.
Was this page helpful? Yes No
Submitting...
Thank you
Comments
Log in or register to comment.