Portals & Projects
A Portal is an org-level setup in Apptics. It’s where an organisation can manage everything related to the projects (apps) you integrate with Apptics. All the projects, users, and settings for your organization live under this Portal.
A Project is a specific app or product that your organization is tracking or managing within the Portal. Each app gets its own Project so that data like user behavior, events, crashes, and analytics can be tracked separately and clearly.
Both Portal ID (zsoid) and Project ID are mandatory parameters for all other Apptics API endpoints. These identifiers establish the organizational context and specific app scope required for data retrieval across crashes, events, screens, and active devices analytics.
Get the list of portals and projects
Returns a list of portals and projects that are available for the user.
OAuth Scope : JProxy.jmobileapi.ALL
curl --request GET \
--url https://apptics.zoho.com/cx/api/v1/userprojects \
--header 'Authorization: Zoho-oauthtoken 1000.41d9xxxxxxxxxxxxxxxxxxxxxxxxc2d1.8fccxxxxxxxxxxxxxxxxxxxxxxxx125f'
{
"result": [
{
"projects": [
{
"projectName": "Zoho Apptics",
"projectid": 12345
}
],
"portalName": "pilot",
"zsoid": 12345
}
]
}