Back to top
 
 
 

Supported Operations

Operations are the actions you perform within your account. Creating, deleting or updating, retrieving. Operations are performed through the ReST web service API.

For every resource exposed, the base URL is fixed to be the name of the resource (in plural) and for referring to single entities of a given resource type, the base URL is appended with the UUID of that resource. For example, given a resource Order. The base URL will be:

/orders

And for a single order, the base URL will be:

/orders/<uuid>

Operation /orders /orders/<uuid>
GET Gets all the orders Get this order
POST Create new order Create this order (Not supported)
PUT Update all orders (Not supported) Update this order
DELETE

Delete all orders (Not supported)

Delete this order
 

Comments