Push
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.
400
Returned when the users sends a malformed request.
401
Returned when the user is not authenticated.
403
Returned when the user does not have permission to access the resource.
404
Returned when the resource does not exist.
500
Returned when an error on the server occurred.
503
Returned when the resource is temporarily unavailable.
default
An unexpected error 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?