api_app_upload_create
POST
/api/app/{app_slug}/upload/
const url = 'https://example.com/api/app/example/upload/';const options = {method: 'POST', headers: {Authorization: '<Authorization>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/app/example/upload/ \ --header 'Authorization: <Authorization>'Upload a file to an application
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”app_slug
required
string
Responses
Section titled “Responses”No response body