Kodall
REST API

Entities API

All requests for this API must be authenticated. The authentication can be achieved in the following ways:

All requests for this API must be authenticated. The authentication can be achieved in the following ways:

  1. by using and API Key
  2. by using the Auth API
  3. by using the Oauth2 flow
  4. by using the OpenID flow

POST /rest/entity/{name}

Create an entity.

Request

ParameterTypeDescription
namestringThe name of the entity.

Response

Example

POST/rest/entity/todo
Initializing connection...

GET /rest/entity/{name}/{key}

Retrieve an entity.

Request

GET /rest/entity/{name}/{key}

NameTypeDescription
namestringThe name of the entity to retrieve
keylongThe key of the entity ro retrieve

Response

Example

GET/rest/entity/todo/1
Initializing connection...

POST /rest/entity/{name}/{key}

Update an entity.

Request

ParameterTypeDescription
namestringThe name of the entity.
keylongThe key of the entity.

Response

Example

POST/rest/entity/todo/1
Initializing connection...

DELETE /rest/entity/{name}/{key}

Delete an entity.

ParameterTypeDescription
namestringThe name of the entity.
keylongThe key of the entity.

Response

Example

DELETE/rest/entity/todo/1
Initializing connection...