META

getProjects

Query: getProjects

Gets the list of available projects for the current user.

Reply

JSON

{
    "accepted": true,
    "query": "getProjects",
    "success": true,
    "message": "I've got the project list.",
    "content": {
        "projects": [
            {
                "uuid": "unique-uid1",
                "data": {"Some JSON Data"}
            },
            {
                "uuid": "unique-uid2",
                "data": {"Some JSON Data"}
            },
            {
                "..."
            }
        ]
    }
}

Details