Mini Game Types

Get all mini game types

get

Retrieve all mini game types for the authenticated app. Optionally filter by name.

Authorizations
x-app-api-keystringRequired

App API key in format:

Query parameters
miniGameTypeNamestringOptional

Filter by mini game type name

Responses
200

Mini game types retrieved successfully

application/json
get
/apps/minigame-types
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",
      "imageUrl": "text",
      "createdAt": "2025-11-29T14:10:18.109Z"
    }
  ]
}

Create a new mini game type

post

Create a new mini game type for the authenticated app. Mini game type names must be unique per app.

Authorizations
x-app-api-keystringRequired

App API key in format:

Body
namestringRequired

Mini game type name (must be unique per app)

descriptionstringOptional

Mini game type description

Default: ""
imageUrlstring · uri | nullableOptional

Optional image URL for the mini game type

Responses
post
/apps/minigame-types
POST /api/v1/apps/minigame-types HTTP/1.1
Host: 
x-app-api-key: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 65

{
  "name": "text",
  "description": "",
  "imageUrl": "https://example.com"
}
{
  "id": "text",
  "name": "text",
  "description": "text",
  "imageUrl": "text",
  "createdAt": "2025-11-29T14:10:18.109Z"
}

Last updated