ServerVersion
Manage server version data
ServerVersion object
Attributes
object
Objectid
StringThe unique identifier of the server version
identifier
StringA unique string identifier for the server version
server_id
StringThe ID of the associated server
server_variant_id
StringThe ID of the associated server variant
get_launch_params
StringParameters used to launch this server version
source
ObjectThe source configuration for this server version
schema
ObjectSchema details associated with the server version
server
Objectcreated_at
DateTimestamp when the server version was created
{"object": "server.server_version","id": "example_id","identifier": "example_identifier","server_id": "example_server_id","server_variant_id": "example_server_variant_id","get_launch_params": "example_get_launch_params","source": {"type": "docker","docker": {}},"schema": {"id": "example_id","fingerprint": "example_fingerprint","schema": {},"server_id": "example_server_id","server_variant_id": "example_server_variant_id","server_version_id": "example_server_version_id","created_at": "2025-07-20T12:25:38.805Z"},"server": {"object": "server#preview","id": "example_id","name": "example_name","description": "example_description","type": "public","created_at": "2025-07-20T12:25:38.805Z","updated_at": "2025-07-20T12:25:38.805Z"},"created_at": "2025-07-20T12:25:38.805Z"}
List server versions
Retrieve all versions for a given server
URL Parameters
serverId
StringThe unique identifier for the server
GEThttp://api.metorial.com/servers/:serverId/versions
curl -X GET "https://api.metorial.com/servers/ser_Rm4Mnheq2bfEPhBhP7SY/versions" \-H "Content-Type: application/json" \-H "Authorization: Bearer metorial_sk_..."
Get server version
Retrieve details for a specific server version
URL Parameters
serverId
StringThe unique identifier for the server
serverVersionId
StringThe unique identifier for the serverVersion
GEThttp://api.metorial.com/servers/:serverId/versions/:serverVersionId
curl -X GET "https://api.metorial.com/servers/ser_Rm4Mnheq2bfEPhBhP7SY/versions/ser_Rm4Mnheq2bfEPhBhP7SY" \-H "Content-Type: application/json" \-H "Authorization: Bearer metorial_sk_..."