Submit a verification request to flag your account as a studio, developer, publisher, or game.
Input
Encoding
application/jsonaccountType
string
Required
No description available.
maxLength: 64 bytescontact
string
Required
No description available.
maxGraphemes: 500 graphemesmessage
string
Required
No description available.
maxGraphemes: 3000 graphemesOutput
Encoding
application/jsonid
string
Required
No description available.
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
View raw schema
{
"type": "procedure",
"input": {
"schema": {
"type": "object",
"required": [
"accountType",
"message",
"contact"
],
"properties": {
"contact": {
"type": "string",
"maxGraphemes": 500
},
"message": {
"type": "string",
"maxGraphemes": 3000
},
"accountType": {
"type": "string",
"maxLength": 64,
"knownValues": [
"studio",
"developer",
"publisher",
"game"
]
}
}
},
"encoding": "application/json"
},
"output": {
"schema": {
"type": "object",
"required": [
"id"
],
"properties": {
"id": {
"type": "string",
"maxLength": 128
}
}
},
"encoding": "application/json"
},
"description": "Submit a verification request to flag your account as a studio, developer, publisher, or game."
}