ThreeDSHttpAction

  • method
    Type: stringenum
    required

    HTTP method to initiate the step. GET = load the URL in an iframe. POST = render a self-submitting form to this URL.

    values
    • GET
    • POST
  • url
    Type: stringFormat: uri
    required

    Your domain endpoint to initiate the step (never a provider URL).

  • params
    Type: object | null

    Name/value pairs to POST with the form (e.g., creq). Only present when method = POST.

    • propertyName
      Type: string
Examples
{
  "method": "POST",
  "url": "https://api.yourco.com/v1/3ds/sessions/3ds_Zyx/challenge",
  "params": {
    "creq": "eyJtZXNzYWdlVHlwZSI6ICJD…"
  }
}