GET
/
workspaces
/
{workspace_id}
/
clone_status
curl --request GET \
  --url https://app.getcensus.com/api/v1/workspaces/{workspace_id}/clone_status \
  --header 'Authorization: Bearer <token>'
{
  "status": "completed",
  "status_endpoint": "https://app.getcensus.com/api/v1/workspaces/1123/clone_status"
}

Authorizations

Authorization
string
header
required

Bearer authorization using your Personal Access Token. Generate a new PAT on your user settings page.

Path Parameters

workspace_id
integer
required

ID of the workspace

Response

202
application/json
The clone is still in progress. To find the status of the clone use the status_endpoint returned.
status
enum<string>

The status of the new cloned workspace.

Available options:
pending,
in_progress,
completed,
failed
Example:

"completed"

status_endpoint
string

The url of the new workspace's clone status.

Example:

"https://app.getcensus.com/api/v1/workspaces/1123/clone_status"