Rest rendered-form spring boot

Hi all,
I’m working on a Spring Boot Starter app, and I have configured camunda engine and rest api to be embedded in it.
The main goal is to extend the REST API of camunda engine by adding some services and in the same time use the ready ones.
The problem is: When I asked the rest http://localhost:8080/rest/process-definition/key/{key}/rendered-form I’ve got the following response:
{

“type”: “InvalidRequestException”,

“message”: “No matching rendered start form for process definition with the id anID found.”

}
but when I call http://localhost:8080/rest/process-definition/key/{key}/startform
I’ve got the following response:
{

“key”: “embedded:app:forms/start.html”,

“contextPath”: “/”

}

PS: the when start a process from Tasklist webapp , it retrieves the form successfully.

Hi @MATRIX81,

GET rendered-form works only for generated forms.

You can retrieve the embedded form html directly from your webApp with something like http://localhost:8080/forms/start.html

Hope this helps, Ingo

Thank you @Ingo_Richtsmeier, that helped.

Regards