Create a workspace

Included in the Basic API.

To create a workspace, use:

POST /api/Workspace

In the request body, you provide the name and description for the new workspace:

{
  "name": "string",
  "description": "string"
}

If the request to create the workspace is successful, the response returns id, the workspace identifier.

{
  "id": "string"
}

You need the workspace identifier to make requests to update or run data generation jobs on the workspace.

For information on how to use the Structural application or API to retrieve the workspace identifier for an existing workspace, go to Getting the workspace ID.

Last updated