Configure Services Workspace

Configuring a services workspace #

This guide explains how to configure a FunnelStory services workspace.

Required Identifiers #

You just need to have the workspace_id of the Workspace you want to configure as a services workspace.

Steps #

  1. Make an API call for updating the workspace type

Fetch:

fetch('/api/workspaces/{workspace_id}/type', {
    method: "PUT", 
    body: JSON.stringify({
        "type": "services"
    })
})

Replace the workspace_id with the ID of the relevant workspace.

  1. (Optional) Make an API call to verify that the workspace has been updated

Fetch:

fetch('/api/workspaces/{workspace_id}', {
    method: "GET"
})

Replace the workspace_id with the ID of the relevant workspace.