v4

latestOpenAPI 3.1.02026-07-3196251302.5 KB
account

Update developer application

post/v1/account.updateDeveloperApp

Request body

$schemastring uri

A URL to the JSON Schema for this object.

descriptionstring nullable required

The new description of the developer app

developerAppIdstring required

The public id of the developer app

namestring nullable required

The new name of the developer app

regenerateboolean required

Whether to re-generate the key

Example request

{
  "$schema": "https://api.steamsets.com/schemas/V1AccountDeveloperAppUpdateRequestBody.json",
  "description": "My App Description",
  "developerAppId": "da_123456",
  "name": "My App",
  "regenerate": true
}

Response

OK

$schemastring uri

A URL to the JSON Schema for this object.

apiKeystring nullable required

The generated API Key

Example response

{
  "$schema": "https://api.steamsets.com/schemas/V1AccountDeveloperAppUpdateResponseBody.json",
  "apiKey": "api_123"
}