Articles on: API

API requests

To construct a REST API request, combine these components:


The HTTP method



GET Requests data from a resource.

POST Submits data to a resource to process.

PUT Updates a resource.

PATCH Partially updates a resource.

DELETE Deletes a resource.


The URL to the API service



The URL is your application url/api/v2/

For instance: http://demo.cloudonex.com/api/v2/

The URI to the resource



The resource to query, submit data to, update, or delete.

For instance: /v2/api/customers/

HTTP request headers



Includes the Authorization header with the access token.

To make REST API calls, include the bearer token in the Authorization header with the Bearer authentication scheme:

Authorization: Bearer Access-Token

Updated on: 29/12/2017

Was this article helpful?

Share your feedback

Cancel

Thank you!