Get all credentials
GET/v1/apps
This route allows you to fetch all credentials in your Port organization.
Requestโ
Query Parameters
fields string[]
Possible values: [id
, name
, createdAt
, updatedAt
, secret
, enabled
]
The fields to include in the response. If not specified, all fields will be included.
Responsesโ
- 200
Retrieved successfully.
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
okanyrequired
Possible values: [true
]
apps
object[]
namestring
enabledboolean
idstring
createdAtdate-time
updatedAtdate-time
secretstring
{
"ok": true,
"apps": [
{
"name": "string",
"enabled": true,
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"secret": "string"
}
]
}