REST API

Overview

A RESTful API provides programatic access to both user and adminstrative functions.

As per convention, Gemini's REST API supports the followingverbs:

  • Get  to retreive an object
  • Put  to update an existing object
  • Post  to add a new object
  • Delete  to remove an object

DevelopersThe API download provides a .NET wrapper for simple API calls

Data Formats

At this time JSON is the only data format supported.

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.