https://api.sigopt.com/v1/clients/CLIENT_ID
Retrieves information about a Client.
Request Method: GET
Parameters
This endpoint takes no parameters.
Response
Client object.
Example Request
client = conn.clients(CLIENT_ID).fetch()
CLIENT=`curl -s -X GET https://api.sigopt.com/v1/clients/CLIENT_ID -u "$SIGOPT_API_TOKEN":`
Client client = Client.fetch(CLIENT_ID).call();
Response
{
"client_security": {
"allow_users_to_see_experiments_by_others": true
},
"created": 1414800000,
"id": "1",
"name": "SigOpt",
"object": "client",
"organization": "1"
}
Last updated