Unauthenticated Consumer Token
LP_JWT=`curl -X POST http://$LP_IDP/api/account/$LP_ACCOUNT/signup | jq -r .jwt`
Authenticated Consumer Token
LP_AUTH_JWT=`curl -X POST -H "Content-Type: application/json" -d '{"authCode" : "'$LP_EXT_JWT'"}' http://$LP_IDP/api/account/$LP_ACCOUNT/authenticate | jq -r .jwt`
Where LP_EXT_JWT
is a JWT (in case of implicit flow) or code (in case of code flow) issued by the customer services.
Brand Consumer Backend Token
TBD