GamebeastDocs
Dashboard
SDK V1Requests

Mark requests started

PUT
/sdk/v1/requests/started

Marks the supplied request IDs as in-progress so the dashboard reflects that the game server has picked them up. Body is a plain array of request IDs; response echoes the IDs that were transitioned.

Authorization

sdkApiKey
authorization<token>

SDK (public) key, prefixed gb_pk_ (older keys: sdk_). Send it as the authorization header value. Scoped to one project, so it is safe to ship in a game build.

In: header

Header Parameters

isstudio?|
Defaulttrue
project-id?integer
Range0 < value <= 9007199254740991

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

[index: integer]?number

Response Body

application/json

curl -X PUT "https://example.com/sdk/v1/requests/started" \  -H "Content-Type: application/json" \  -d '[    0  ]'
[  0]