Skip to main content
GET
/
process-definition
/
key
/
{key}
/
tenant-id
/
{tenant-id}
/
rendered-form
Get Rendered Start Form
curl --request GET \
  --url http://{host}:{port}/{contextPath}/process-definition/key/{key}/tenant-id/{tenant-id}/rendered-form \
  --header 'Authorization: Basic <encoded-value>'
"<form class=\"form-horizontal\">\n                                  <div class=\"control-group\">\n                                    <label class=\"control-label\">Customer ID</label>\n                                    <div class=\"controls\">\n                                      <input form-field type=\"string\" name=\"customerId\"></input>\n                                    </div>\n                                  </div>\n                                  <div class=\"control-group\">\n                                    <label class=\"control-label\">Amount</label>\n                                    <div class=\"controls\">\n                                      <input form-field type=\"number\" name=\"amount\"></input>\n                                    </div>\n                                  </div>\n                                </form>"

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

key
string
required

The key of the process definition (the latest version thereof) to be retrieved.

tenant-id
string
required

The id of the tenant the process definition belongs to.

Response

Request successful.

For application/xhtml+xml Responses, a byte stream is returned.