v1
latestOpenAPI 3.0.02026-07-141,4077,1665.2 MBApp Builder
Create Publish Request
Create a publish request to ask for approval to publish an app whose protection level is approval_required. Publishing happens automatically once the request is approved by a user with the appropriate permissions.
post/api/v2/app-builder/apps/{app_id}/publish-request
Path parameters
app_idstring uuid required
The ID of the app.
Request body
Example request
{
"data": {
"attributes": {
"description": "Adds new dashboard widgets and a few bug fixes.",
"title": "Release v1.2 to production"
},
"type": "publishRequest"
}
}Response
Created
Example response
{
"data": {
"attributes": {
"app_version_id": "65bb1f25-52e1-4510-9f8d-22d1516ed693"
},
"id": "65bb1f25-52e1-4510-9f8d-22d1516ed693",
"meta": {
"user_uuid": "65bb1f25-52e1-4510-9f8d-22d1516ed693"
},
"type": "deployment"
}
}