Create a new project
POST/project
Create a new project
Request
- application/json
Body
The details of the project to create
URL to the project's thumbnail image
Possible values: <= 32 characters
Name of the project
Possible values: <= 50 characters
The game engine used for the project
Platform for the project
The amount of project credits available.
Number of monthly users
Indicates if the project is hidden or visible
Responses
- 201
- 400
- 401
- 403
- 500
- default
Project successfully created
- application/json
- Schema
- Example (from schema)
- Example
Schema
URL to the project's thumbnail image
Time representation of Project creation
Possible values: <= 32 characters
Name of the project
Possible values: <= 50 characters
The game engine used for the project
Platform for the project
The amount of project credits available.
Number of monthly users
Configuration settings for the project
Unique identifier for Project
Indicates if the project is hidden or visible
Unique identifier of the owner
{
"thumbnail": "https://file.playmakers.co/p2Duhf5N6/aUv0OhmsR.jpg",
"createdAt": "2024-01-01T09:00:00.00Z",
"name": "Call of foodie 2",
"gameEngine": "Unity",
"platform": "[\"pc\",\"linux\", \"xbox\", \"playstation\"]",
"credits": 100,
"numMonthlyUsers": 1500,
"config": "https://file.playmakers.co/cfg/p2Duhf5N6/config.json",
"id": "p2Duhf5N6",
"hidden": false,
"ownerId": "ab1a4ade-6eb9-40cd-bb3e-f274af238649"
}
{
"id": "p2Duhf5N6",
"hidden": false,
"numMonthlyUsers": 1500,
"ownerId": "ab1a4ade-6eb9-40cd-bb3e-f274af238649",
"createdAt": "2024-01-01T09:00:00.00Z",
"thumbnail": "https://file.playmakers.com/p2Duhf5N6/thumbnail.jpg",
"name": "Watchcats 2",
"config": "",
"gameEngine": "Unity",
"platform": "[\"pc\",\"linux\", \"xbox\", \"playstation\"]"
}
Bad Request
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Bad Request"
}
Unauthorized
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Unauthorized access"
}
Forbidden
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Forbidden access"
}
Internal Server Error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "Internal Server Error"
}
Unexpected error
- application/json
- Schema
- Example (from schema)
- Example
Schema
{
"error": "string"
}
{
"error": "An unexpected error occured"
}