The purpose of this method is to retrieve and all available projects in Beebox
URL
        
        CODE
    
    (GET) /api/projects?token=
 PARAMETERS
Parameters are:
| token | The session token obtained when connecting. | 
 
RESULTS
The method returns JSON and HTTP status 200. Other HTTP status values indicate an error.
EXAMPLE
A typical result may look like:
| 
        
        CODE
     [
    {
        "beeboxProjectKey": "72f0e41hjkjkc-0f0924570e25",
        "name": "gh_Teamsite-es",
        "description": null,
        "projectType": 2,
        "projectTypeT": "PassThrough",
        "sourceLocale": "fr",
        "sourceLocaleName": "French (fr)",
        "targetLocales": [
            "en",
            "de"
        ],
        "targetLocaleNames": [
            "English (en)",
            "German (de)"
        ],
        "dataSource": null,
        "stats": {
            "date": "2020-02-19T14:04:48.0575984Z",
            "ssegments": 0,
            "swords": 0,
            "tsegments": 0,
            "twords": 0,
            "sfiles": 1,
            "tlocales": 2
        }
    },
    {
        "beeboxProjectKey": "7ca4bcfbkjhkhjkcd7abb375",
        "name": "AMFINESESD",
        "description": null,
        "projectType": 0,
        "projectTypeT": "Files",
        "sourceLocale": "fr",
        "sourceLocaleName": "French (fr)",
        "targetLocales": [
            "nl",
            "en",
            "de"
        ],
        "targetLocaleNames": [
            "Dutch (nl)",
            "English (en)",
            "German (de)"
        ],
        "dataSource": null,
        "stats": {
            "date": "2019-11-27T12:42:56.4922411Z",
            "ssegments": 8,
            "swords": 229,
            "tsegments": 24,
            "twords": 687,
            "sfiles": 1,
            "tlocales": 3
        }
    }
]
 |