Game Objects

Get Ranked Results

get

Get ranked Game Object results for a player

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
playerIdstringRequired

ID value. Only alphanumeric, underscore, and hyphen are allowed.

Pattern: ^[a-zA-Z0-9_-]+$
inputTagsstringRequired

Specify comma-separated input tags that will be used to score the game objects associated with the output tag.

If the output tag is included in the input tags, the player's score for those game object will be used as base scores

outputTagstringRequired

Specify the output tag of the game objects to get ranked results for

Responses
get
/game-objects/ranked

Get All Game Objects

get

Get all Game Objects. Paginated by default. Supports filtering and sorting.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
takeany ofOptionalDefault: 10
anyOptional
or
numberOptional
skipany ofOptionalDefault: 0
anyOptional
or
numberOptional
idFilterany ofOptional

Comma-separated Game Object IDs to filter by

anyOptional
or
string[]Optional
allowFuzzyIdFilterbooleanOptional

Set to true to enable fuzzy ID filtering. If false, only returns exact matches.

Default: false
nameFilterany ofOptional

Comma-separated Game Object names to filter by

anyOptional
or
string[]Optional
allowFuzzyNameFilterbooleanOptional

Set to true to enable fuzzy name filtering. If false, only returns exact matches.

Default: false
tagFilterany ofOptional

Comma-separated list of tag IDs the resulting game objects must have

anyOptional
or
string[]Optional
tagExcludeFilterany ofOptional

Comma-separated list of tag IDs to exclude from the response. Use this to exclude game objects that have a specific tag, even if they match the requiredTags filter.

anyOptional
or
string[]Optional
untaggedFilterstring · enumOptional

include: Include all game objects, regardless of whether they have tags or not.

exclude: Exclude game objects that have no tags.

untagged-only: Only return game objects that have no tags. Setting this option will ignore requiredTags and excludeTags, since tagged items shouldn't appear in the results.

Default: includePossible values:
sortFieldstring · enumOptional

Field to sort by

Possible values:
sortOrderstring · enumOptional

Sort order for the selected field

Possible values:
includeTagDatabooleanOptional

Set to true to include additional tags info in the response

Default: false
excludeGameObjectsany ofOptional

Comma-separated list of Game Object IDs to exclude from the response

anyOptional
or
string[]Optional
Responses
get
/game-objects

Create Game Object

post

Create a new Game Object

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Body
idstringOptional

ID value. Only alphanumeric, underscore, and hyphen are allowed.

Pattern: ^[a-zA-Z0-9_-]+$
namestringRequired
descriptionstringOptional
Responses
post
/game-objects

Delete Game Objects

delete

Delete one or more game objects by their IDs

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
idstring[]Optional
Responses
delete
/game-objects

Get Game Object Count

get

Get the total Game Object count. Supports filtering.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
idFilterany ofOptional

Comma-separated Game Object IDs to filter by

anyOptional
or
string[]Optional
allowFuzzyIdFilterbooleanOptional

Set to true to enable fuzzy ID filtering. If false, only returns exact matches.

Default: false
nameFilterany ofOptional

Comma-separated Game Object names to filter by

anyOptional
or
string[]Optional
allowFuzzyNameFilterbooleanOptional

Set to true to disable fuzzy name filtering. If false, only returns exact matches.

Default: false
tagFilterany ofOptional

Comma-separated list of tag IDs the resulting game objects must have

anyOptional
or
string[]Optional
tagExcludeFilterany ofOptional

Comma-separated list of tag IDs to exclude from the response. Use this to exclude game objects that have a specific tag, even if they match the requiredTags filter.

anyOptional
or
string[]Optional
untaggedFilterstring · enumOptional

include: Include all game objects, regardless of whether they have tags or not.

exclude: Exclude game objects that have no tags.

untagged-only: Only return game objects that have no tags. Setting this option will ignore requiredTags and excludeTags, since tagged items shouldn't appear in the results.

Default: includePossible values:
excludeGameObjectsany ofOptional

Comma-separated list of Game Object IDs to exclude from the response

anyOptional
or
string[]Optional
Responses
get
/game-objects/count

Get Game Object by ID

get

Get a Game Object by its ID.

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID value. Only alphanumeric, underscore, and hyphen are allowed.

Pattern: ^[a-zA-Z0-9_-]+$
Responses
get
/game-objects/{id}

Update Game Object by ID

put

Update a Game Object by its ID

Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
idstringRequired

ID value. Only alphanumeric, underscore, and hyphen are allowed.

Pattern: ^[a-zA-Z0-9_-]+$
Body
Responses
put
/game-objects/{id}

Was this helpful?