Skip to main content

Get Project Information

Abstract

Get Project Information.

Our first simple call will be to obtain project details. This call to the API returns information about the public projects on the server.

To execute this call enter the following request into the address bar of your web browser:

Request

{{url}}/extractor/api/projects/

Use the server name of your PoolParty installation for the '{{url}}', for example 'http://enterprise.poolparty.biz' or the one from your own installation.

This call returns the names of the projects, their project IDs, the default language and the available languages in the extraction model as results:

Results

{
    "projects": [
        {
            "label": "All About Cocktails",
            "uuid": "1E034541-9963-0001-EE48-B5D068201D43",
            "defaultLanguage": "en",
            "languages": [
                "de",
                "en"
            ]
        },
        {
            "label": "News Classification",
            "uuid": "1E031D21-BCC5-0001-E0C7-E8901820190E",
            "defaultLanguage": "en",
            "languages": [
                "en"
            ]
        }
    ]
}