https://api.sigopt.com/v1/organizations/ORGANIZATION_ID
Retrieves information about an Organization.
Request Method: GET
Parameters
This endpoint takes no parameters.
Response
Organization object.
Example Request
organization = conn.organizations(ORGANIZATION_ID).fetch()
ORGANIZATION=`curl -s -X GET https://api.sigopt.com/v1/organizations/ORGANIZATION_ID -u "$SIGOPT_API_TOKEN":`
Organization organization = Organization.fetch(ORGANIZATION_ID).call();
Response
{
"academic": false,
"allow_signup_from_email_domains": false,
"client_for_email_signup": null,
"created": 1414800000,
"data_storage_bytes": null,
"email_domains": [],
"id": "1",
"name": "SigOpt",
"object": "organization",
"optimized_runs_in_billing_cycle": null,
"total_runs_in_billing_cycle": null
}