IntegrationsDopplerActions
List Doppler projects
List projects in the connected Doppler workplace. One page per call; Doppler does not return a continuation token.
projects.list · Doppler · v1
Details
Scopes
None
Input
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page | integer | No | minimum 1 |
per_page | integer | No | minimum 1; maximum 20 |
Output
| Name | Type | Required | Constraints |
|---|---|---|---|
(root) | object | Yes | additionalProperties false |
page | integer | Yes | minimum 1 |
projects | array<object> | Yes | maxItems 20 |
projects[] | object | Yes | additionalProperties false |
projects[].id | string | Yes | minLength 1; maxLength 128 |
projects[].slug | string | Yes | minLength 1; maxLength 128; pattern ^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$ |
projects[].name | string | Yes | minLength 1; maxLength 200 |
projects[].description | string | No | maxLength 2000 |
projects[].created_at | string | No | minLength 1; maxLength 64 |
Raw schema
Input
{
"type": "object",
"additionalProperties": false,
"properties": {
"page": {
"type": "integer",
"minimum": 1
},
"per_page": {
"type": "integer",
"minimum": 1,
"maximum": 20
}
}
}Output
{
"type": "object",
"additionalProperties": false,
"properties": {
"page": {
"type": "integer",
"minimum": 1
},
"projects": {
"type": "array",
"items": {
"type": "object",
"additionalProperties": false,
"properties": {
"id": {
"type": "string",
"minLength": 1,
"maxLength": 128
},
"slug": {
"type": "string",
"minLength": 1,
"maxLength": 128,
"pattern": "^[a-z0-9](?:[a-z0-9_-]*[a-z0-9])?$"
},
"name": {
"type": "string",
"minLength": 1,
"maxLength": 200
},
"description": {
"type": "string",
"maxLength": 2000
},
"created_at": {
"type": "string",
"minLength": 1,
"maxLength": 64
}
},
"required": [
"id",
"slug",
"name"
]
},
"maxItems": 20
}
},
"required": [
"page",
"projects"
]
}