Interlaken
API referenceApplicationsDeploy servers

Push an app folder tarball (.tgz) onto the deploy server's worker — lands extracted at /opt/apps/<name>. Source: team_object (a tarball a team member previously storage_put into team shared storage) or content_b64 for small archives. ASYNC: poll get_deploy_servers_id_artifacts until status=ready BEFORE building on the worker.

POST
/api/v1/deploy-servers/{id}/artifacts

Requires the deploy_servers:manage permission.

Authorization

AuthorizationBearer <token>

An access token from this zone's POST /oauth/token, or a session token from POST /api/v1/auth/login. Send it as Authorization: Bearer <token>.

In: header

Path Parameters

id*string

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://example.com/api/v1/deploy-servers/string/artifacts" \  -H "Content-Type: application/json" \  -d '{    "name": "string"  }'
{  "bytes": 0,  "error": "string",  "id": "string",  "path": "string",  "sha256": "string",  "status": "string"}