Home
Policies
Form Data to JSON
Converts form data in the incoming request to JSON.
Configuration#
{
"name": "my-formdata-to-json-inbound-policy",
"policyType": "formdata-to-json-inbound",
"handler": {
"export": "FormDataToJsonInboundPolicy",
"module": "$import(@zuplo/runtime)",
"options": {
"badRequestIfNotFormData": false,
"optionalHoneypotName": "HONEYPOT_FIELD_NAME"
}
}
}
Options#
name
the name of your policy instance. This is used as a reference in your routes.policyType
the identifier of the policy. This is used by the Zuplo UI. Value should beformdata-to-json-inbound
.handler/export
The name of the exported type. Value should beFormDataToJsonInboundPolicy
.handler/module
the module containing the policy. Value should be$import(@zuplo/runtime)
.handler/options
The options for this policy:badRequestIfNotFormData
Should the policy return an error if the request is not of the type form data
optionalHoneypotName
The name of the honeypot field. Used to provide basic spam filtering.