Get App
Gets an existing application.
Path parameters
idstringRequired
the id of the app to get
Header parameters
sessionTokenstringRequired
Session authentication token.
Responses
200
OK
application/json
400
Client error, see response body for further details.
application/json
401
Unauthorized: Invalid session token.
application/json
403
Forbidden: Caller lacks necessary entitlement.
application/json
500
Server error, see response body for further details.
application/json
get
GET /pod/v1/admin/app/{id}/get HTTP/1.1
Host: yourpodURL.symphony.com
sessionToken: text
Accept: */*
{
"applicationInfo": {
"appId": "my-test-app",
"name": "my-test-app",
"appUrl": "https://joe.mydomain.com",
"domain": "mydomain.com",
"publisher": "Joe Smith"
},
"iconUrl": "https://myiconUrl.com",
"description": "a test app",
"allowOrigins": "mydomain.com",
"permissions": [
"ACT_AS_USER",
"SEND_MESSAGES"
],
"cert": "-----BEGIN PUBLIC KEY-----\\nMIICIANBgkqhw0BAQ...cCAwEAAQ==\\n-----END PUBLIC KEY-----",
"authenticationKeys": {
"current": {
"key": "-----BEGIN PUBLIC KEY-----\\nMIICIANBgkqhw0BAQ...cCAwEAAQ==\\n-----END PUBLIC KEY-----",
"expirationDate": 1700815176000,
"action": "SAVE"
},
"previous": {
"key": "-----BEGIN PUBLIC KEY-----\\nMIICIANBgkqhw0BAQ...cCAwEAAQ==\\n-----END PUBLIC KEY-----",
"expirationDate": 1700815176000,
"action": "SAVE"
}
},
"notification": {
"url": "https://some.url",
"apiKey": "test123456"
},
"properties": [
{
"key": "port",
"value": 4000
},
{
"key": "url",
"value": "https://someother.url"
}
]
}
🚧 Roles and PrivilegesCalling this endpoint requires the Super Administrator, Super Compliance Officer, User Provisioning or Agent role. See Bot Permissions for a list of roles and associated privileges.
Last updated
Was this helpful?