GET
/
workspaces
/
{workspace_id}
/
application_variables
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
    }
  ]
}

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

200
application/json
Successfully retrieved the list of workspace variables.
status
enum<string>

The outcome of the fetch request

Available options:
success
Example:

"success"

data
object[]

The key, value, and secret status of a workspace variable