Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
variables
Get all project variables for a project
curl --request GET \
  --url https://eu1.api.matillion.com/dpc/v1/projects/{projectId}/variables \
  --header 'Authorization: Bearer <token>'
{
  "page": 1,
  "results": [
    {
      "behaviour": "COPIED",
      "description": "<string>",
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "supportsDoubleResolution": true,
      "type": "NUMBER",
      "value": "<unknown>"
    }
  ],
  "size": 50,
  "total": 472
}

Authorizations

Authorization
string
header
required

a valid bearer token

Path Parameters

projectId
string<uuid>
required

Query Parameters

Response

Project variables have been retrieved

page
integer<int32>

The 0-indexed page number of the returned results.

Example:

1

results
object[]

Page of results or empty.

size
integer<int32>

The size of each page of results.

Example:

50

total
integer<int64>

Total number of available results across all pages.

Example:

472