Get Workspace Bundle
curl --request GET \
--url https://api.studio.prisme.ai/v2/pages/{workspaceSlug}/_bundle \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.studio.prisme.ai/v2/pages/{workspaceSlug}/_bundle', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/v2/pages/{workspaceSlug}/_bundle"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"bundles": {},
"workspace": {
"id": "<string>",
"slug": "<string>",
"name": "<string>"
}
}{
"error": "ObjectNotFound",
"message": "<string>"
}Prisme.ai Workspaces
Get Workspace Bundle
Get workspace bundle configuration by slug (public, no auth required)
GET
/
v2
/
pages
/
{workspaceSlug}
/
_bundle
Get Workspace Bundle
curl --request GET \
--url https://api.studio.prisme.ai/v2/pages/{workspaceSlug}/_bundle \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.studio.prisme.ai/v2/pages/{workspaceSlug}/_bundle', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/v2/pages/{workspaceSlug}/_bundle"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"bundles": {},
"workspace": {
"id": "<string>",
"slug": "<string>",
"name": "<string>"
}
}{
"error": "ObjectNotFound",
"message": "<string>"
}Authorizations
BearerAuthOrgApiKeyAuthBearerAuth & OrgApiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Workspace slug
Was this page helpful?