v1

latestOpenAPI 3.0.32026-07-24214879985.1 KB
Applications

This endpoint allows you to update a single application.

patch/applications/{applicationId}

Request body

namestring

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

The description of the application.

isPublicboolean

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 Updated