Create Platform
POST/api/v1/platforms
Create Platform
Request
- application/json
Body
required
Name of the platform
Description of the platform
Possible values: [android, windows, linux, macos]
Operating system of the platform
Possible values: [X86_64, ARM64]
Number of vCPUs
Memory size in MB
Disk size in GB
Possible values: [HDD, SSD, NVME]
Possible values: [NAT, BRIDGED, HOST_ONLY, CUSTOM]
Optional image ID
Optional tags or metadata
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
Name of the platform
Description of the platform
Possible values: [android, windows, linux, macos]
Operating system of the platform
Possible values: [X86_64, ARM64]
Number of vCPUs
Memory size in MB
Disk size in GB
Possible values: [HDD, SSD, NVME]
Possible values: [NAT, BRIDGED, HOST_ONLY, CUSTOM]
Optional image ID
Optional tags or metadata
ID of the platform
Timestamp when the platform was created
Timestamp when the platform was last updated
{
"name": "string",
"description": "This is a sample platform.",
"os": "windows",
"cpuArchitecture": "X86_64",
"cpuCount": 0,
"memoryMb": 0,
"diskGb": 0,
"diskType": "HDD",
"networkType": "NAT",
"imageId": "string",
"metadata": {},
"id": 0,
"createdAt": "2026-01-01T11:09:06.670Z",
"updatedAt": "2026-01-01T11:09:06.670Z"
}