cURL
curl --request GET \ --url https://app.getcensus.com/api/v1/workspaces/{workspace_id}/application_variables \ --header 'Authorization: Bearer <token>'
{ "status": "success", "data": [ { "key": "<string>", "value": "<string>", "secret": true } ] }
List the variables for a specific workspace.
Bearer authorization using your Personal Access Token. Generate a new PAT on your user settings page.
ID of the workspace
Successfully retrieved the list of workspace variables.
The outcome of the fetch request
success
"success"
Show child attributes
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.
Was this page helpful?