Retrieve the list of all applications configured for the tenant, including their FQDN, port, and status details.
https://{server-hostname}:8383/sse/api/applications
SSE.READCopied!
Authorization: d92d4xxxxxxxxxxxxx15f52
curl --request GET \
--url https://appdomain/sse/api/applications \
--header 'Accept: application/json' \
--header 'Authorization: d92d4xxxxxxxxxxxxx15f52'The unique identifier (primary key) of the application
The display name of the application
The application type (may be null in GET response)
Application status as string: 1 = Active, 2 = Inactive
Timestamp (epoch milliseconds) when the application was created
User ID of the administrator who created the application
Nested object containing the FQDN, port, and protocol of the protected application
The fully qualified domain name of the protected application
Port number the application is accessible on
Transport protocol: TCP or UDP
Unauthorized error code returned when authentication credentials are missing, expired, or invalid (authentication=required)
Authentication failure reason
Forbidden error code returned when the authenticated user does not have the required uem-roles (e.g., DataEncryption_Admin or DataEncryptionRecoveryKey_Admin)
Message indicating insufficient privileges to access this resource
List of all applications configured for the tenant
[
{
"FQDN": {
"protocol": "TCP",
"fqdn": "portal.internal.company.com",
"port": 443
},
"addedBy": 2,
"name": "Internal Portal",
"addedTime": 1711180800000,
"applicationId": 2001,
"type": null,
"status": "1"
},
{
"FQDN": {
"protocol": "UDP",
"fqdn": "dns.internal.company.com",
"port": 53
},
"addedBy": 2,
"name": "DNS Server",
"addedTime": 1711180800000,
"applicationId": 2002,
"type": null,
"status": "1"
}
]
No applications configured for the tenant
[]
Authentication credentials are missing or invalid
{
"errorMessage": "You are not authorized to perform this action",
"errorCode": "UNAUTHORIZED"
}
User does not have the required SSE_Read role
{
"errorMessage": "User does not have permission to perform this operation",
"errorCode": "FORBIDDEN"
}
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.