Mini Game Types

Get all mini game types

get

Retrieve all mini game types for the authenticated app

Authorizations
Responses
200

Mini game types retrieved successfully

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

post

Create a new mini game type for the authenticated app

Authorizations
Body
namestringRequired

Mini game type name

descriptionstringOptional

Mini game type description

Default: ""
Responses
201

Mini game type created successfully

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"
}