Create Platform
POST/api/v1/platforms
Create Platform
Request
- application/json
Body
required
name stringrequired
Name of the platform
description string
Description of the platform
imageId string
Optional image ID
metadata object
Optional tags or metadata
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
name stringrequired
Name of the platform
description string
Description of the platform
imageId string
Optional image ID
metadata object
Optional tags or metadata
id numberrequired
ID of the platform
createdAt date-timerequired
Timestamp when the platform was created
updatedAt date-timerequired
Timestamp when the platform was last updated
{
"name": "string",
"description": "This is a sample platform.",
"imageId": "string",
"metadata": {},
"id": 0,
"createdAt": "2026-09-10T14:32:46.391Z",
"updatedAt": "2026-09-10T14:32:46.391Z"
}
Loading...