GET
/
cloud
/
v1
/
caas
/
secrets
/
{project_id}
/
{region_id}
curl --request GET \
  --url https://api.gcore.com/cloud/v1/caas/secrets/{project_id}/{region_id} \
  --header 'APIKey: <api-key>'
{
  "count": 1,
  "results": [
    {
      "login": "login",
      "name": "my-secret",
      "registry": "some.registry.com",
      "updated_at": "2021-01-01T00:00:00Z"
    }
  ]
}

Authorizations

APIKey
string
header
required

API key for authentication.

Path Parameters

project_id
integer
required

Project id

Examples:

1

region_id
integer
required

Region id

Examples:

1

Query Parameters

limit
integer
default:1000

Optional. Limit the number of returned items

Required range: 0 < x <= 1000
Examples:

1000

offset
integer
default:0

Optional. Offset value is used to exclude the first set of records from the result

Required range: x >= 0
Examples:

0

Response

200 - application/json

OK

The response is of type object.