Apps And Solutions
Application
Get application by application ID.
1min
code examples curl location globoff '/developer/apps/{appid}' \\ \ header 'accept application/json' \\ \ header 'content type application/json'var myheaders = new headers(); myheaders append("accept", "application/json"); myheaders append("content type", "application/json"); var requestoptions = { method 'get', headers myheaders, redirect 'follow' }; fetch("/developer/apps/{appid}", requestoptions) then(response => response text()) then(result => console log(result)) catch(error => console log('error', error));require "uri" require "json" require "net/http" url = uri("/developer/apps/{appid}") http = net http new(url host, url port); request = net http get new(url) request\["accept"] = "application/json" request\["content type"] = "application/json" response = http request(request) puts response read body import requests import json url = "/developer/apps/{appid}" payload = {} headers = { 'accept' 'application/json', 'content type' 'application/json' } response = requests request("get", url, headers=headers, data=payload) print(response text) responses { "appid" "app\ bf17e158 1951 47f9 84f1 e50aeb59fac2", "listingid" "vehicle tracker genius", "urn" "platform\ app\ bf17e158 1951 47f9 84f1 e50aeb59fac2", "uniquename" "vehicles", "urlpath" "vehicles", "apptype" "", "issubscriptioncredentialsavailable" false, "clients" \[ { "environment" "", "clientkey" "platform\ app\ client\ bf17e158 1951 47f9 84f1 e50aeb59fac2", "servicekey" "platform\ app\ service\ bf17e158 1951 47f9 84f1 e50aeb59fac2", "secret" "bf17e158 1951 47f9 84f1 e50aeb59fac2" } ], "classifications" "1 0 0", "versions" \[ { "createdat" "", "createdby" "", "updatedat" "", "updatedby" "", "appid" "app\ bf17e158 1951 47f9 84f1 e50aeb59fac2", "appversionid" "appversion\ bf17e158 1951 47f9 84f1 e50aeb59fac2", "version" "1 0 0", "displayname" "vehicles", "description" "this is a very long description of the app", "visibility" {}, "isconsolecompatible" false, "consolecompatible" false, "ismarketplacecompatible" false, "status" "development", "state" {}, "appurls" \[ { "name" "interface", "url" "https //mytenant os1 delhivery com/my app" } ], "packagename" \[ { "name" "interface", "url" "https //mytenant os1 delhivery com/my app" } ], "urloverrides" \[ { "stackid" "logistax", "url" {} } ], "icons" \[ { "artifactid" "470d7bb7 4136 4fa5 8806 85d5f7ee2548", "filename" "icon png", "filedescription" "", "fileurl" "https //my app com/icon png", "filepath" "myapp/icon png" } ], "settingsicon" {}, "images" \[ { "artifactid" "470d7bb7 4136 4fa5 8806 85d5f7ee2548", "filename" "icon png", "filedescription" "", "fileurl" "https //my app com/icon png", "filepath" "myapp/icon png" } ], "shortdescription" "this is a short description of the app", "longdescription" "this is a very long description of the app", "categories" \[ \[ "" ] ], "documents" \[ { "category" "draft", "document" {} } ], "permissions" \[ { "artifactid" "470d7bb7 4136 4fa5 8806 85d5f7ee2548", "filename" "icon png", "filedescription" "", "fileurl" "https //my app com/icon png", "filepath" "myapp/icon png" } ], "permissionsweb" \[ { "artifactid" "470d7bb7 4136 4fa5 8806 85d5f7ee2548", "filename" "icon png", "filedescription" "", "fileurl" "https //my app com/icon png", "filepath" "myapp/icon png" } ], "applicationmenu" \[ { "id" "470d7bb7 4136 4fa5 8806 85d5f7ee2548", "parentid" "470d7bb7 4136 4fa5 8806 85d5f7ee2548", "displayname" "create order", "displayorder" 1, "relativepath" "/my app/create order", "icon" {} } ], "compatiblesolution" \[ { "solutionid" "solution\ b31414f1 bc40 42c9 bcc0 ed7a47126441" } ] } ] }