Download OpenAPI specification:
A REST/WebSocket API for BLISS
{- "synchrotron": "string",
- "beamline": "string",
- "instrument": "string",
- "session": "string",
- "bliss_version": "string",
- "blissdata_version": "string",
- "flint_version": "string",
- "blisstomo_version": "string",
- "fscan_version": "string",
- "blisswebui_version": "string"
}
Call a function either directly in the session
or on an object in the session asynchronouslyThis allows for example, to execute scans, and interact with bliss objects in the contextof the running session.If has_scan_factory
is true, assume the function returns a scan and return the scan in theprogress
field of the call state.
Env Object (string) or Env Object (null) (Env Object) Default: null A path to an object from the environment on which to call a function | |
Object (string) or Object (null) (Object) Default: null A name of a registered object | |
function required | string (Function) The function to call |
Array of Args (any) or Args (null) (Args) A list of arguments, special types can be handled with jsonready | |
Kwargs (object) or Kwargs (null) (Kwargs) A dictionary of kwargs, special types can be handled with jsonready | |
Has Scan Factory (boolean) or Has Scan Factory (null) (Has Scan Factory) Default: false Assume this function creates a | |
In Terminal (boolean) or In Terminal (null) (In Terminal) Default: false If true, the call is executed inside the BLISS terminal. If the terminal is busy an exception is raised. | |
Emit Stdout (boolean) or Emit Stdout (null) (Emit Stdout) Default: false If true, the call stdout are emitted as event in the websocket namespace |
{- "env_object": null,
- "object": null,
- "function": "string",
- "args": [
- null
], - "kwargs": { },
- "has_scan_factory": false,
- "in_terminal": false,
- "emit_stdout": false
}
{- "call_id": "string"
}
Get the state and response of an asynchronous function call in the sessionWhen the the function returns it will try to json serialise the response,if this is not possible an exception will be raised.Exceptions will be caught and returned along with the traceback.
call_id required | string (Call Id) |
{- "state": "running",
- "return_value": null,
- "progress": null
}
Get a list of all hardware objects and their statuses
Type (string) or Type (null) (Type) Default: null Filter by a specific type |
{- "total": 0,
- "results": [
- {
- "name": "string",
- "type": "string",
- "online": true,
- "errors": [
- { }
], - "alias": null,
- "properties": { },
- "user_tags": [
- "string"
], - "locked": {
- "reason": "string"
}
}
], - "skip": null,
- "limit": null
}
Register a series of hardware objects to be made available via the API
names required | Array of strings (Names) |
{- "names": [
- "string"
]
}
{- "names": [
- "string"
]
}
Get the status of a particular hardware object
name required | string (Name) The unique bliss object name |
{- "name": "string",
- "type": "string",
- "online": true,
- "errors": [
- { }
], - "alias": null,
- "properties": { },
- "user_tags": [
- "string"
], - "locked": {
- "reason": "string"
}
}
Update a property on a hardware object
name required | string (Name) The unique bliss object name |
property required | string (Property) The property to set |
value required | any (Value) Its value |
{- "property": "string",
- "value": null
}
{- "property": "string",
- "value": null
}