Platform-specific UI Schema

put/1/platform-schemas/{platform}

Request body

platform'EPIC' | 'STEAM' | 'GOG'

Platform / App store from which the build needs to be pulled

descriptionstring

Details about the platform from which the build is pulled

Example request

{
  "platform": "STEAM",
  "description": "STEAM",
  "fields": [
    {
      "name": "branchName",
      "label": "Branch Name",
      "description": "Name of the branch that contains the build",
      "valueType": "string",
      "inputType": "text",
      "placeholder": "Enter branch name here",
      "maxLength": 50,
      "sortOrder": 10
    }
  ]
}

Response

Success

Example response

{
  "data": {
    "platform": "STEAM",
    "description": "STEAM",
    "fields": [
      {
        "name": "branchName",
        "label": "Branch Name",
        "description": "Name of the branch that contains the build",
        "valueType": "string",
        "inputType": "text",
        "placeholder": "Enter branch name here",
        "maxLength": 50,
        "sortOrder": 10
      }
    ]
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.