Project List
https://api.sigopt.com/v1/clients/CLIENT_ID/projects
Retrieves a Pagination of all Project objects for this client.
Request Method: GET
Parameters
Name | Type | Required? | Description |
---|---|---|---|
after | string | N | Optional. Returns items with ids after after . |
before | string | N | Optional. Returns items with ids before before . |
limit | int | N | Optional. Limit the number of items returned. The maximum value is 100. |
Response
Pagination object.Example Request
Response
{
"count": 1,
"data": [
{
"client": "1",
"created": 1414800000,
"experiment_count": 1,
"id": "classification-models",
"metadata": null,
"name": "Classification Models",
"object": "project",
"training_run_count": 2,
"updated": 1446422400,
"user": "1234"
}
],
"object": "pagination",
"paging": {
"after": "CgYQgM/asQUKAhAB",
"before": "CgYQgM/asQUKAhAB"
}
}