Home / Resources / API Reference

Project

Base route: /api/project

Import workspace variable

Imports a single variable from the workspace into the project's variable scope.

Request

Parameters
projectId
string
required
Target project ID.
workspaceVariableId
string
required
The ID of the workspace variable to import.
Request body

POST /api/project/workspace-variable {   "projectId": "string",   "workspaceVariableId": "string" }

Response

Parameters
projectVariableId
string
The identifier assigned to the variable within the project.
Response body

{   "projectVariableId": "string" }