Please update DOC : REST flowable-task

Hi,

The following command returns nothing, and seems to execute a redirect (code 302)
Maybe the reason why i get nothing is because the password is not encrypted ?

curl --verbose --user admin:test http://localhost:8080/flowable-task/service/management/tables
/ACT_RE_PROCDEF

=>

  • About to connect() to localhost port 8080 (#0)
  • Trying ::1…
  • Connected to localhost (::1) port 8080 (#0)
  • Server auth using Basic with user ‘admin’
    GET /flowable-task/service/management/tables/ACT_RE_PROCDEF HTTP/1.1
    Authorization: Basic YWRtaW46dGVzdA==
    User-Agent: curl/7.29.0
    Host: localhost:8080
    Accept: /

HTTP/1.1 302
X-Content-Type-Options: nosniff
X-XSS-Protection: 1; mode=block
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: 0
X-Frame-Options: SAMEORIGIN
Location: http://localhost:8080/flowable-idm/#/login?redirectOnAuthSuccess=true&redirectUrl=http://localhost:8080/flowable-task/service/management/tables/ACT_RE_PROCDEF
Content-Length: 0
Date: Fri, 06 Oct 2017 15:12:16 GMT
Connection #0 to host localhost left intact

SOLUTION :
“form-api” was missing in the request like this :

curl -u admin:test -X GET -H “Content-Type:application/json” “http://localhost:8080/flowable-task/form-api /form-repository/form-definitions”

The doc 7.3.1 should be updated : http://www.flowable.org/docs/userguide-form/index.html#_form_instances

The following path is missing for all the url : http://localhost:8080/flowable-task/form-api

Hello,

Hope you have seen this response to your earliest feedback : DOC error : flowable-task REST url

Thanks for the feedback.