cURL
curl --request POST \ --url https://app.getcensus.com/api/v1/workspaces/{workspace_id}/application_variables/bulk_insert \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' [ { "key": "<string>", "value": "<string>", "secret": true } ] '
{ "status": "success", "data": [ { "key": "<string>", "value": "<string>", "secret": true } ] }
Bulk create new workspace variables in this workspace.
Bearer authorization using your Personal Access Token. Generate a new PAT on your user settings page.
ID of the workspace
Keys cannot contain whitespaces
Whether this variable contains secret or sensitive information, like a password. Secret variables can only be used in secret connection credentials.
Successfully created workspace variables.
The outcome of the creation request
success
"success"
Show child attributes
Was this page helpful?