Create compute service

⚠️ Experimental endpoint: this API is in active development and may change at any time without notice. ⚠️

Creates a new compute service under the specified project. The service is placed in the given region (or the default region if omitted).

POST/v1/projects/{projectId}/compute-services
AuthorizationBearer <token>

OAuth2 authentication

In: header

Scope: workspace:admin, offline_access

Path Parameters

projectId*string
Match^(proj_)?([cC][^\s-]{8,}|[a-z0-9]+)$

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://api.prisma.io/v1/projects/string/compute-services" \  -H "Content-Type: application/json" \  -d '{    "displayName": "string"  }'
{
  "data": {
    "id": "string",
    "type": "compute-service",
    "url": "http://example.com",
    "name": "string",
    "region": {
      "id": "string",
      "name": "string"
    },
    "projectId": "string",
    "latestVersionId": "string",
    "createdAt": "2019-08-24T14:15:22Z"
  }
}