SkillhabitDocs

Workspace

Read workspace-level customer settings used by external clients.

GET
/workspaces/info

Returns customer workspace settings that external clients may need, including company name, allowed email domains, whether any email domain is allowed, and the default language.

AuthorizationBearer <token>

A JSON Web Token

In: header

Response Body

application/json

curl -X GET "https://example.com/workspaces/info"
{  "customerId": "demo",  "companyName": "Demo Company",  "anyDomains": false,  "emailDomains": [    "example.com"  ],  "defaultLanguage": "en"}