Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Workspace id
curl --request GET \
--url https://api.eda.prisme.ai/v2/workspaces/{workspaceId}/status \
--header 'Authorization: Bearer <token>'{
"version": {
"type": "import",
"importedAt": "<string>",
"exportedAt": "<string>"
},
"errors": [
{
"msg": "<string>",
"err": "<any>"
}
],
"changes": [
{
"type": "automations",
"slug": "<string>",
"currentChecksum": "<string>",
"expectedChecksum": "<string>",
"updatedAt": "<string>",
"updatedBy": "<string>"
}
],
"automations": [
{
"slug": "<string>"
}
],
"imports": [
{
"slug": "<string>"
}
],
"pages": [
{
"slug": "<string>"
}
]
}Retrieve various debug information
curl --request GET \
--url https://api.eda.prisme.ai/v2/workspaces/{workspaceId}/status \
--header 'Authorization: Bearer <token>'{
"version": {
"type": "import",
"importedAt": "<string>",
"exportedAt": "<string>"
},
"errors": [
{
"msg": "<string>",
"err": "<any>"
}
],
"changes": [
{
"type": "automations",
"slug": "<string>",
"currentChecksum": "<string>",
"expectedChecksum": "<string>",
"updatedAt": "<string>",
"updatedBy": "<string>"
}
],
"automations": [
{
"slug": "<string>"
}
],
"imports": [
{
"slug": "<string>"
}
],
"pages": [
{
"slug": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Workspace id
Was this page helpful?