v1

latestOpenAPI 3.0.32026-07-24214879985.1 KB
Applications

This endpoint allows you to create a new application under the requesting user's account. A maximum of 100 applications can be created under the account.

post/applications

Request body

namestring required

Name of the application.

displayNamestring

Display name of the application.

websitestring uri

URL to the website of this application.

developerstring

Name of the developer/company which developed this application.

privacyPolicystring uri

URL to the privacy policy of this application.

termsOfServicestring uri

URL to the terms of service of this application.

descriptionstring required

The description of the application.

isPublicboolean required

Whether this application is intended to be public (available for other parties through an application store).

logostring uri

URL to the logo of the application.

Example request

{
  "name": "Application name",
  "displayName": "Application display name",
  "website": "https://een.com",
  "developer": "Eagle eye networks",
  "privacyPolicy": "https://een.com/privacy",
  "termsOfService": "https://een.com/tos",
  "description": "This is the web client",
  "logo": "https://een.com/logo.png",
  "technicalContact": {
    "name": "Prakash",
    "lastName": "Singh",
    "email": "abc@gmail.com",
    "phone": "(555) 555-1234"
  }
}

Response

Application Created

idstring required

Unique identifier for application

namestring required

Name of the application.

displayNamestring

Display name of the application.

websitestring uri

URL to the website of this application.

developerstring

Name of the developer/company which developed this application.

privacyPolicystring uri

URL to the privacy policy of this application.

termsOfServicestring uri

URL to the terms of service of this application.

descriptionstring required

The description of the application.

isPublicboolean required

Whether this application is intended to be public (available for other parties through an application store).

logostring uri

URL to the logo of the application.

Example response

{
  "id": "application Id",
  "technicalContact": {
    "name": "Prakash",
    "lastName": "Singh",
    "email": "abc@gmail.com",
    "phone": "(555) 555-1234"
  },
  "name": "Application name",
  "displayName": "Application display name",
  "website": "https://een.com",
  "developer": "Eagle eye networks",
  "privacyPolicy": "https://een.com/privacy",
  "termsOfService": "https://een.com/tos",
  "description": "This is the web client",
  "logo": "https://een.com/logo.png"
}