Skip to main content
PUT
/
apps
/
{app_id}
/
file
Update app code
curl --request PUT \
  --url https://shardcloud.app/api/apps/{app_id}/file \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form project=@example-file
{
  "message": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

app_id
string<uuid>
required

Body

multipart/form-data
project
file
required

ZIP file containing the project (max 100MB)

Response

App updated successfully

message
string
I