Update credentials
PUT/v1/apps/:id
This route allows you to update the name of a set of credentials in your Port organization.
Requestโ
Path Parameters
id stringrequired
The id
of the credentials set you want to update.
- application/json
Body
required
namestringrequired
The new name of the credentials set.
Responsesโ
- 200
Updated successfully.
- application/json
- Schema
- Example (from schema)
Schema
okanyrequired
Possible values: [true
]
app
object
namestring
enabledboolean
idstring
createdAtdate-time
updatedAtdate-time
secretstring
{
"ok": true,
"app": {
"name": "string",
"enabled": true,
"id": "string",
"createdAt": "2024-07-29T15:51:28.071Z",
"updatedAt": "2024-07-29T15:51:28.071Z",
"secret": "string"
}
}