Comment on page
Queued Suggestion Object
/experiments/EXPERIMENT_ID/queued_suggestions/QUEUED_SUGGESTION_ID
Represents a Suggestion that will subsequently be served. If there are Queued Suggestions available when a Suggestion is created, the Suggestion will be created from the first available Queued Suggestion.
Key | Type | Value |
---|---|---|
assignments | The parameter values that will be used to create the Suggestion. | |
created | int | The timestamp (in seconds since epoch) that this queued suggestion was created. |
experiment | string | |
id | string | A unique ID for this queued suggestion. |
Method | URI | Description |
---|---|---|
POST | Queued Suggestion Create | |
GET | Queued Suggestion Detail | |
GET | Queued Suggestion List | |
DELETE | Queued Suggestion Delete |
{
"assignments": {
"degree": 2,
"gamma": 3.6,
"kernel": "rbf"
},
"created": 1414800000,
"experiment": "1",
"id": "1",
"object": "queued_suggestion"
}
Last modified 1yr ago