v1
latestOpenAPI 3.0.32026-07-24214879985.1 KBApplications
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
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
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"
}