How do I create session tokens in Postman?
Postman treats :create
as a “Postman parameter”, and not a part of the URL. Since the value has not been defined, the resolved URL will be /token/session/
rather than the intended /token/session/:create
.
A workaround is to manually specify create
as a path variable with the value :create
. The resolved URL will then be correct.