GET/credentials

List credentials in the resolved project. Credential values are not returned.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Query Parameters

domain?string

Filter by domain

limit?integer

Maximum number of results to return

Rangevalue <= 100
Default20
offset?integer

Number of results to skip

Default0
query?string

Case-insensitive substring match against credential name or domain. IDs match by exact value.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/credentials"
[  {    "id": "string",    "name": "string",    "domain": "string",    "created_at": "2019-08-24T14:15:22Z",    "updated_at": "2019-08-24T14:15:22Z",    "has_values": true,    "has_totp_secret": true,    "value_keys": [      "string"    ],    "sso_provider": "string",    "totp_code": "string",    "totp_code_expires_at": "2019-08-24T14:15:22Z"  }]