WorkOS
connect.applications.update
Update an existing Connect Application. For OAuth applications, you can update redirect URIs. For all applications, you can update the name, description, and scopes.
Remote workos
Other tools also called connect.applications.update?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "The application ID or client ID of the Connect Application."
},
"name": {
"type": "string",
"description": "The name of the application."
},
"scopes": {
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"description": "The OAuth scopes granted to the application."
},
"description": {
"type": [
"string",
"null"
],
"description": "A description for the application."
},
"redirect_uris": {
"type": [
"array",
"null"
],
"items": {
"type": "object",
"required": [
"uri"
],
"properties": {
"uri": {
"type": "string",
"description": "The redirect URI."
},
"default": {
"type": [
"boolean",
"null"
],
"description": "Whether this is the default redirect URI."
}
}
},
"description": "Updated redirect URIs for the application. OAuth applications only."
}
}
}