Skip to main content

Form Data to JSON Policy

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"
}
}
}
  • 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 be formdata-to-json-inbound.
  • handler/export The name of the exported type. Value should be FormDataToJsonInboundPolicy.
  • handler/module the module containing the policy. Value should be $import(@zuplo/runtime).
  • handler/options The options for this policy:
    • badRequestIfNotFormData
      [object Object]
    • optionalHoneypotName
      [object Object]

Read more about how policies work