Get Program Status
GET /program/status
Get the current status of a program. Status events logged currently include rebase activity.
Request Parameters
Header Parameters
Name | Type | Description |
---|---|---|
program-id required | string |
Responses
200
Successful Response
ProgramStatus | application/json
Name | Type | Properties |
---|---|---|
program_id required | string | |
status_id required | string | |
message required | string | |
ts_logged required | string | description: Time the status was logged |
Response Example
{
"program_id": "string",
"status_id": "string",
"message": "string",
"ts_logged": "string"
}
404
User history not found
ErrorMessage | application/json
Name | Type | Properties |
---|---|---|
detail required | string |
422
Validation Error
HTTPValidationError | application/json
Name | Type | Properties |
---|---|---|
detail | array | items: {'$ref': '#/components/schemas/ValidationError'} |
ValidationError | application/json
Name | Type | Properties |
---|---|---|
loc required | array | items: {'anyOf': [{'type': 'string'}, {'type': 'integer'}]} |
msg required | string | |
type required | string |