Skip to main content
POST
/
v1
/
account.updateDeveloperApp
Update developer application
curl --request POST \
  --url https://api.steamsets.com/v1/account.updateDeveloperApp \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "My App Description",
  "developerAppId": "da_123456",
  "name": "My App",
  "regenerate": true
}'
{
  "$schema": "https://api.steamsets.com/schemas/V1AccountDeveloperAppUpdateResponseBody.json",
  "apiKey": "api_123"
}
This endpoint is not intended for public use and requires user authentication

Authentication Required

This endpoint requires an active user session and cannot be accessed via API keys. It’s designed for authenticated user interactions within the web application.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
description
string | null
required

The new description of the developer app

Examples:

"My App Description"

developerAppId
string
required

The public id of the developer app

Examples:

"da_123456"

name
string | null
required

The new name of the developer app

Examples:

"My App"

regenerate
boolean
required

Whether to re-generate the key

Examples:

true

Response

OK

apiKey
string | null
required

The generated API Key

Examples:

"api_123"

$schema
string<uri>

A URL to the JSON Schema for this object.

Examples:

"https://api.steamsets.com/schemas/V1AccountDeveloperAppUpdateResponseBody.json"