res = client.data_modeling.spaces.retrieve(spaces='mySpace')
res = client.data_modeling.spaces.retrieve(spaces=["MySpace", "MyAwesomeSpace", "MyOtherSpace"]){
"items": [
{
"space": "<string>",
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"isGlobal": true,
"description": "<string>",
"name": "<string>"
}
]
}Required capabilities:
DataModelsAcl:READ
Retrieve up to 100 spaces by specifying their space-ids.
res = client.data_modeling.spaces.retrieve(spaces='mySpace')
res = client.data_modeling.spaces.retrieve(spaces=["MySpace", "MyAwesomeSpace", "MyOtherSpace"]){
"items": [
{
"space": "<string>",
"createdTime": 1730204346000,
"lastUpdatedTime": 1730204346000,
"isGlobal": true,
"description": "<string>",
"name": "<string>"
}
]
}Access token issued by the CDF project's configured identity provider. Access token must be an OpenID Connect token, and the project must be configured to accept OpenID Connect tokens. Use a header key of 'Authorization' with a value of 'Bearer $accesstoken'. The token can be obtained through any flow supported by the identity provider.
List of space-ids for the spaces to return.
1 - 100 elementsShow child attributes
List of spaces
List of spaces
Show child attributes
Was this page helpful?