Push


Upload a distributed app

post

Upload a distributed app to the server

Authorizations
Body
datastring · byteRequired

Base64-encoded tar archive containing application code, configuration, and dependencies.

Responses
200
A successful response.
post
POST /v1/dev/apps HTTP/1.1
Host: api.bytenite.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 19

{
  "data": "Ynl0ZXM="
}
{
  "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
  "name": "video-transcoding",
  "version": "1.0",
  "owner": "b7aac91d-7e62-4923-898f-5c6d9ea48927",
  "status": "active",
  "deviceRequirements": {
    "minCpu": 1,
    "minMemory": 2,
    "gpu": [
      "T4",
      "V100"
    ]
  },
  "createdAt": "2025-06-25T02:09:50.085Z",
  "updatedAt": "2025-06-25T02:09:50.085Z",
  "platform": "docker",
  "hash": "Plv5qqtm1jPtm8Brq4jMj9u/zSJMQV85fl62UNxltcM=",
  "link": "text",
  "platformConfig": {
    "container": "python:latest",
    "privateImage": true,
    "username": "text",
    "token": "text"
  },
  "entrypoint": "main.py",
  "revision": "text",
  "description": "text"
}

Last updated

Was this helpful?