TRY NEW VERSION

Try now New API BETA

Try out the new view and capabilities of the API documentation

START

GET /api/portal/get This function requires authentication

Description

Returns a list of all the portals registered for the user with the email address specified in the request.

Parameters
Name Description Type Example
email
sent in Query
Portal owner email address string "test@example.com"
Returns

A list of all the portals registered for the user with the email address specified in the request

Example Response
{
    "tenants": [
        {
            "created": "2010-07-07T15:46:00",
            "domain": "example.com",
            "language": "en-US",
            "ownerId": "78e1e841-8314-48465-8fc0-e7d6451b6475",
            "portalName": "example",
            "status": "Active",
            "tenantId": 1,
            "timeZoneName": "UTC"
        },
        {
            "created": "2014-02-07T20:14:00",
            "domain": "example2014.com",
            "language": "ru-RU",
            "ownerId": "be7bc931-b966-493e-a8b5-56fc7d21f9c8",
            "portalName": "example2014",
            "status": "Active",
            "tenantId": 2,
            "timeZoneName": "(UTC+03:00) Moscow, St. Petersburg, Volgograd"
        },
        ...
    ]
}