Update Project's Thumbnail
PUT/project/:projectId/thumbnail
Update Project's Thumbnail
Request
Path Parameters
projectId stringrequired
The projectId to update
- multipart/form-data
Body
Project thumbnail image file
thumbnail binary
Responses
- 200
- 400
- 401
- 403
- 404
- 500
- default
Project successfully updated
- application/json
- Schema
- Example (from schema)
Schema
hidden boolean
Indicates if the project is hidden or visible
numMonthlyUsers integer
Number of monthly users
thumbnail urinullable
URL to the project's thumbnail image
name projectName (string)required
Possible values: <= 32 characters
Name of the project
gameEngine string
Possible values: <= 50 characters
The game engine used for the project
id string
Unique identifier for Project
createdAt date-time
Time representation of Project creation
config objectnullable
Configuration settings for the project
platform string
Platform for the project
ownerId
Unique identifier of the owner
{
"hidden": false,
"numMonthlyUsers": 1500,
"thumbnail": "https://file.playmakers.co/p2Duhf5N6/aUv0OhmsR.jpg",
"name": "Call of foodie 2",
"gameEngine": "Unity",
"id": "p2Duhf5N6",
"createdAt": "2024-01-01T09:00:00.00Z",
"config": "https://file.playmakers.co/cfg/p2Duhf5N6/config.json",
"platform": "[\"pc\",\"linux\", \"xbox\", \"playstation\"]",
"ownerId": "ab1a4ade-6eb9-40cd-bb3e-f274af238649"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Bad Request"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Unauthorized access"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Forbidden access"
}
NotFound
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "A mandatory item was not found"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
- Example
Schema
error string
{
"error": "string"
}
{
"error": "An unexpected error occured"
}
Loading...