Mini Game Types
Retrieve all mini game types for the authenticated app
Authorizations
Responses
200
Mini game types retrieved successfully
application/json
401
Unauthorized - invalid or missing API key
application/json
500
Internal server error
application/json
get
GET /api/v1/apps/minigame-types HTTP/1.1
Host:
x-app-api-key: YOUR_API_KEY
Accept: */*
{
"miniGameTypes": [
{
"id": "text",
"name": "text",
"description": "text",
"createdAt": "2025-10-09T23:00:03.597Z"
}
]
}
Create a new mini game type for the authenticated app
Authorizations
Body
namestringRequired
Mini game type name
descriptionstringOptionalDefault:
Mini game type description
""
Responses
201
Mini game type created successfully
application/json
400
Invalid request data
application/json
401
Unauthorized - invalid or missing API key
application/json
500
Internal server error
application/json
post
POST /api/v1/apps/minigame-types HTTP/1.1
Host:
x-app-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 32
{
"name": "text",
"description": ""
}
{
"id": "text",
"name": "text",
"description": "text",
"createdAt": "2025-10-09T23:00:03.597Z"
}