Update a game image

Last updated: May 29, 2026

Update a game image

Update the game image identified by `imageid` with the details passed through the parameters (e.g., activate or deactivate the image). **WARNING:** This endpoint uses HTTP GET but performs a state-changing operation. Do not cache or automatically retry this request.

Endpoint

GET /cfp/v1/image/{imageid}/update

Path Parameters

Name

Type

Required

Description

imageid

integer

Yes

Game image ID representing the game image to update.

Query Parameters

Name

Type

Required

Description

active

integer

Yes

Boolean value (1 = activate, 0 = deactivate) controlling whether the game image is active.

Example Request

curl -X GET "https://api.multiplay.dev/cfp/v1/image/:imageid/update?active=<active>" \
  -H "Authorization: Bearer <token>"

Responses

Status

Description

200

Image updated successfully.

400

401

403

404

500