Get Workspace Status
curl --request GET \
--url https://api.studio.prisme.ai/v2/workspaces/{workspaceId}/status \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.studio.prisme.ai/v2/workspaces/{workspaceId}/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/v2/workspaces/{workspaceId}/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"errors": [
{
"msg": "<string>",
"err": "<unknown>"
}
],
"automations": [
{
"slug": "<string>"
}
],
"imports": [
{
"slug": "<string>"
}
],
"pages": [
{
"slug": "<string>"
}
],
"version": {
"importedAt": "<string>",
"exportedAt": "<string>"
},
"changes": [
{
"slug": "<string>",
"currentChecksum": "<string>",
"expectedChecksum": "<string>",
"updatedAt": "<string>",
"updatedBy": "<string>"
}
]
}{
"error": "AuthenticationError",
"message": "Unauthenticated"
}{
"error": "ForbiddenError",
"message": "Forbidden"
}{
"error": "ObjectNotFound",
"message": "<string>"
}Prisme.ai Workspaces
Get Workspace Status
Retrieve various debug information
GET
/
v2
/
workspaces
/
{workspaceId}
/
status
Get Workspace Status
curl --request GET \
--url https://api.studio.prisme.ai/v2/workspaces/{workspaceId}/status \
--header 'Authorization: Bearer <token>'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.studio.prisme.ai/v2/workspaces/{workspaceId}/status', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/v2/workspaces/{workspaceId}/status"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text){
"errors": [
{
"msg": "<string>",
"err": "<unknown>"
}
],
"automations": [
{
"slug": "<string>"
}
],
"imports": [
{
"slug": "<string>"
}
],
"pages": [
{
"slug": "<string>"
}
],
"version": {
"importedAt": "<string>",
"exportedAt": "<string>"
},
"changes": [
{
"slug": "<string>",
"currentChecksum": "<string>",
"expectedChecksum": "<string>",
"updatedAt": "<string>",
"updatedBy": "<string>"
}
]
}{
"error": "AuthenticationError",
"message": "Unauthenticated"
}{
"error": "ForbiddenError",
"message": "Forbidden"
}{
"error": "ObjectNotFound",
"message": "<string>"
}Authorizations
BearerAuthOrgApiKeyAuthBearerAuth & OrgApiKeyAuth
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Workspace id
Response
Success Response
Was this page helpful?
⌘I