Unless I'm missing something, there's no way to specify a HAL Forms _template entry that doesn't send a request body. For example, to indicate in a HAL document that you can perform some action by doing a POST to some URI without a request body.
I can fake this using _links but it doesn't really feel right - they are meant to define links to other related resources, not actions that can be performed on this one.
For example, a User resource might look like this:
{
"name": "Test User",
"email": "testuser@example.com",
"_links": {
"self": {
"href": "/users/auth0%7C6240a09cc665610070aa5bfb"
}
},
"_templates": {
"edit": {
"method": "PUT",
"fields": [
{
"name": "name",
"type": "text",
"required": true
}, {
"name": "email",
"type": "email",
"required": true
}
]
},
"/users/actions/change_password": {
"target": "/users/auth0%7C6240a09cc665610070aa5bfb/change_password",
"method": "POST"
},
"/users/actions/verify_email": {
"target": "/users/auth0%7C6240a09cc665610070aa5bfb/verify_email",
"method": "POST"
}
}
}
In this case, both the /users/actions/change_password and /users/actions/verify_email templates define actions that are performed on this resource, but they don't need a request body. Instead they are simply a POST to the given URI that triggers the action and returns the result.
Doing the above will cause the action to send an application/json request with a request body of {}. Explicitly setting the contentType property on the template to null has no effect either.
Further, because of the TS definition of Action.submit() I'm forced to pass in some payload when calling this method, so it seems that actions without a body are just not supported right now.
Unless I'm missing something, there's no way to specify a HAL Forms
_templateentry that doesn't send a request body. For example, to indicate in a HAL document that you can perform some action by doing a POST to some URI without a request body.I can fake this using
_linksbut it doesn't really feel right - they are meant to define links to other related resources, not actions that can be performed on this one.For example, a User resource might look like this:
In this case, both the
/users/actions/change_passwordand/users/actions/verify_emailtemplates define actions that are performed on this resource, but they don't need a request body. Instead they are simply a POST to the given URI that triggers the action and returns the result.Doing the above will cause the action to send an
application/jsonrequest with a request body of{}. Explicitly setting thecontentTypeproperty on the template tonullhas no effect either.Further, because of the TS definition of
Action.submit()I'm forced to pass in some payload when calling this method, so it seems that actions without a body are just not supported right now.