sdk.analysis.get()
elements.sdk.api.analysis
Get an Analysis.
Retrieve the metadata of a set of Analyses.
Parameters
- ids (List[str]) - list of Analysis IDs to get
- [Optional] pagination (Pagination) - Pagination object only with page size field set
Returns
List[Analysis]
Example(s)
# Get a list of Analyses
await sdk.analysis.get(ids=["40078e32-27ee-438e-87bf-87063482c7b4"])
# Output (List[Analysis])
[id: "40078e32-27ee-438e-87bf-87063482c7b4"
author: "[email protected]"
created_on {
seconds: 1667404863
nanos: 766877000
}
name: "My Awesome Analysis"
]Updated 6 months ago