apps_partial_update
PATCH
/v1/apps/{app_id}
const url = 'https://example.com/v1/apps/example';const options = {method: 'PATCH', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request PATCH \ --url https://example.com/v1/apps/example \ --header 'Authorization: Bearer <token>'GET /v1/apps/{id} — Get app details. PATCH /v1/apps/{id} — Update app name or alias. DELETE /v1/apps/{id} — Archive (soft-delete) an app.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”app_id
required
string
Responses
Section titled “Responses”No response body