Returns the users list of projects. EndpointBASE_URL/projects Parametersoauth - oath2 token retrieved from SimpleWorker.com account.
Request HTTPS GET /2/projects?oauth=<your-token-here>
Returns: 200 OK, body =
{ "projects": [ { "_id": "4e71843298ea9b6b9f000004", "Timestamper": { "created_at": 1316062258000000000, "updated_at": 1316062258000000000 }, "user_id": "4e71841f98ea9b6b9f000002", "name": "TestProject001", "type": "free", "max_schedules": 100 } ] }
Note that created_at and updated_at are unix time in nanoseconds. To convert to standard unix time, divide by 1.0E9
TODO
|
|