REST API
Overview
A RESTful API provides complete programtic access to both user and adminstrative functions.
As per convention the following HTTP verbs are used to desrive action types.
- Get: to retreive an object
- Post: to add a new object
- Put: to update an existing object
- Delet: to remove an object
DevelopersThe API download provides a .NET wrapper for simple API calls
Data Formats
At this time, only JSON is a supported data format.
JSON
Set the Accept-Type
header to application/json
when you wish to receive JSON.
Set the Content-Type
header to application/json; charset=utf-8
when you are sending JSON.