curl --request GET \
--url https://controller.platform.simplecloud.app/v0/blueprints \
--header 'X-Network-ID: <x-network-id>' \
--header 'X-Network-Secret: <x-network-secret>'{
"blueprints": [
{
"blueprint_id": "123e4567-e89b-12d3-a456-426614174000",
"configurator": "example-configurator",
"created_at": "2023-01-01T12:00:00Z",
"minecraft_version": "1.20.1",
"name": "example-blueprint",
"runtime_config": {
"type": "java",
"with": {}
},
"server_software": "paper",
"server_url": "https://example.com/server",
"software_version": "1.20.1",
"updated_at": "2023-01-01T12:00:00Z",
"workflow_steps": [
"<string>"
]
}
],
"count": 5
}Get a list of blueprints for a network
curl --request GET \
--url https://controller.platform.simplecloud.app/v0/blueprints \
--header 'X-Network-ID: <x-network-id>' \
--header 'X-Network-Secret: <x-network-secret>'{
"blueprints": [
{
"blueprint_id": "123e4567-e89b-12d3-a456-426614174000",
"configurator": "example-configurator",
"created_at": "2023-01-01T12:00:00Z",
"minecraft_version": "1.20.1",
"name": "example-blueprint",
"runtime_config": {
"type": "java",
"with": {}
},
"server_software": "paper",
"server_url": "https://example.com/server",
"software_version": "1.20.1",
"updated_at": "2023-01-01T12:00:00Z",
"workflow_steps": [
"<string>"
]
}
],
"count": 5
}Was this page helpful?