curl --request GET \
--url https://{defaultHost}/v1/workspaces/{id} \
--header 'X-Authorization: <api-key>'{
"workspace": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"personal": true,
"membership": {
"role": "owner",
"created_at": "2023-11-07T05:31:56Z"
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"settings": {},
"is_pro": true,
"public_signup": true,
"user_info_requirement": "<string>",
"logo_url": "<string>"
}
}Get workspace details by ID or slug
curl --request GET \
--url https://{defaultHost}/v1/workspaces/{id} \
--header 'X-Authorization: <api-key>'{
"workspace": {
"id": "<string>",
"name": "<string>",
"slug": "<string>",
"personal": true,
"membership": {
"role": "owner",
"created_at": "2023-11-07T05:31:56Z"
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"settings": {},
"is_pro": true,
"public_signup": true,
"user_info_requirement": "<string>",
"logo_url": "<string>"
}
}Was this page helpful?