# Payment-NextAction

If present, this property tells you what actions you need to take in order for your customer to fulfill a payment using the provided source.

**type**string

* `CONFIRM` - Your customer needs to be redirected to a [hosted payment page](https://docs.monei.com/integrations/use-prebuilt-payment-page/) or confirm payment using [payment token](https://docs.monei.com/integrations/build-custom-checkout/#3-confirm-the-payment-client-side). The **redirectUrl** will point to the hosted payment page.
* `FRICTIONLESS_CHALLENGE` - Your customer needs to be redirected to the frictionless 3d secure challenge page provided by the bank. The **redirectUrl** will point to the frictionless 3d secure challenge page provided by the bank.
* `CHALLENGE` - Your customer needs to be redirected to the 3d secure challenge page provided by the bank. The **redirectUrl** will point to the 3d secure challenge page provided by the bank.
* `COMPLETE` - The payment is completed. The **redirectUrl** will be the **completeUrl** if it was provided when the payment was created.
* `BIZUM_CHALLENGE` - Your customer will be redirected to the Bizum hosted payment page.

**Possible values:** \[`CONFIRM`, `CHALLENGE`, `FRICTIONLESS_CHALLENGE`, `BIZUM_CHALLENGE`, `COMPLETE`]

**Example:<!-- -->&#x20;**`CONFIRM`

**mustRedirect**boolean

If `true` you have to redirect your customer to the **redirectUrl** to continue payment process.

**Example:<!-- -->&#x20;**`false`

**redirectUrl**string

Redirect your customer to this url to continue payment process.

**Example:<!-- -->&#x20;**`https://secure.monei.com/payments/af6029f80f5fc73a8ad2753eea0b1be0`

Payment-NextAction

```
{

  "type": "CONFIRM",

  "mustRedirect": false,

  "redirectUrl": "https://secure.monei.com/payments/af6029f80f5fc73a8ad2753eea0b1be0"

}
```
