v4

latestOpenAPI 3.1.02026-07-3196251302.5 KB
account

Create developer application

post/v1/account.createDeveloperApp

Request body

$schemastring uri

A URL to the JSON Schema for this object.

descriptionstring required

The description of the app

environment'production' | 'development' | 'staging' required

The environment to create the app for

generateKeyboolean required

Whether to generate a key for the app

namestring required

The name of the app

Example request

{
  "$schema": "https://api.steamsets.com/schemas/V1AccountCreateDeveloperAppRequestBody.json",
  "description": "Your App Description",
  "environment": "production",
  "generateKey": true,
  "name": "Your App"
}

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/V1AccountCreateDeveloperAppResponseBody.json",
  "apiKey": "api_123"
}