🏢 Workspaces
Create a workspace
Creates a new workspace owned by the authenticated user. Subject to the plan's workspace limit.
post/api/v1/workspaces
Request body
Example request
{
"name": "Acme Marketing",
"logo": "https://logo.clearbit.com/contentstudio.io",
"timezone": "Asia/Karachi",
"super_admin_id": "610a1d92b11ba161ce1cd372",
"note": "Client workspace",
"instagram_posting_method": "api",
"first_day": {
"day": "Monday",
"key": 1
}
}Response
Workspace created successfully
Example response
{
"status": true,
"message": "Workspace created successfully. Use the returned `id` as `workspace_id` in subsequent requests."
}