Skip to main content
POST
/
resourcePack
/
{resourcePackId}
/
{createId}
Create Server
curl --request POST \
  --url https://servers.flashrdp.com/api/resourcePack/{resourcePackId}/{createId} \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "memory": 10,
  "storage": 20,
  "cpuCores": 60
}
'
{
  "id": "154b6d58-4385-4288-a637-a71f51cade3d"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Accept
enum<string>
required
Available options:
application/json

Path Parameters

resourcePackId
integer
required
createId
string
required

Body

application/json
memory
integer

Only required for variable values

storage
integer

Only required for variable values

cpuCores
integer

Only required for variable values

Response

id
string
Last modified on June 20, 2026