curl --request GET \
--url https://api.eda.prisme.ai/v2/workspaces/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"name": "<string>",
"description": {
"fr": "Bonjour",
"en": "Hello"
},
"photo": "<string>",
"config": {
"schema": {},
"block": "<string>",
"value": "<any>"
},
"blocks": {},
"slug": "<string>",
"id": "<string>",
"labels": [
"<string>"
],
"customDomains": [
"<string>"
],
"registerWorkspace": true,
"repositories": {},
"secrets": {
"schema": {}
},
"events": {
"mapping": {},
"types": {}
},
"automations": {},
"pages": {},
"imports": {},
"createdAt": "<string>",
"updatedAt": "<string>",
"createdBy": "<string>"
}
Fetch a workspace
curl --request GET \
--url https://api.eda.prisme.ai/v2/workspaces/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"name": "<string>",
"description": {
"fr": "Bonjour",
"en": "Hello"
},
"photo": "<string>",
"config": {
"schema": {},
"block": "<string>",
"value": "<any>"
},
"blocks": {},
"slug": "<string>",
"id": "<string>",
"labels": [
"<string>"
],
"customDomains": [
"<string>"
],
"registerWorkspace": true,
"repositories": {},
"secrets": {
"schema": {}
},
"events": {
"mapping": {},
"types": {}
},
"automations": {},
"pages": {},
"imports": {},
"createdAt": "<string>",
"updatedAt": "<string>",
"createdBy": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Workspace id
Optional version
Success Response
The response is of type object
.
Was this page helpful?