Skip to main content
GET
/
task
/
{id}
/
rendered-form
Get Rendered Form
curl --request GET \
  --url http://{host}:{port}/{contextPath}/task/{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

id
string
required

The id of the task to get the rendered form for.

Response

Request successful.

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