# PostPaymentIntents

From **Stripe API**.

`POST /v1/payment_intents`

<p>Creates a PaymentIntent object.</p>

<p>After the PaymentIntent is created, attach a payment method and <a href="/docs/api/payment_intents/confirm">confirm</a>
to continue the payment. You can read more about the different payment flows
available via the Payment Intents API <a href="/docs/payments/payment-intents">here</a>.</p>

<p>When <code>confirm=true</code> is used during creation, it is equivalent to creating
and confirming the PaymentIntent in the same call. You may use any parameters
available in the <a href="/docs/api/payment_intents/confirm">confirm API</a> when <code>confirm=true</code>
is supplied.</p>

## Request body

- Required: true
### `application/x-www-form-urlencoded`

- Type: `object`

```json
{"additionalProperties":false,"properties":{"amount":{"description":"Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).","type":"integer"},"application_fee_amount":{"description":"The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account. The amount of the application fee collected will be capped at the total payment amount. For more information, see the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts).","type":"integer"},"automatic_payment_methods":{"description":"When enabled, this PaymentIntent will accept payment methods that you have enabled in the Dashboard and are compatible with this PaymentIntent's other parameters.","properties":{"enabled":{"type":"boolean"}},"required":["enabled"],"title":"automatic_payment_methods_param","type":"object"},"capture_method":{"description":"Controls when the funds will be captured from the customer's account.","enum":["automatic","manual"],"type":"string"},"confirm":{"description":"Set to `true` to attempt to [confirm](https://stripe.com/docs/api/payment_intents/confirm) this PaymentIntent immediately. This parameter defaults to `false`. When creating and confirming a PaymentIntent at the same time, parameters available in the [confirm](https://stripe.com/docs/api/payment_intents/confirm) API may also be provided.","type":"boolean"},"confirmation_method":{"enum":["automatic","manual"],"type":"string"},"currency":{"description":"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).","type":"string"},"customer":{"description":"ID of the Customer this PaymentIntent belongs to, if one exists.\n\nPayment methods attached to other Customers cannot be used with this PaymentIntent.\n\nIf present in combination with [setup_future_usage](https://stripe.com/docs/api#payment_intent_object-setup_future_usage), this PaymentIntent's payment method will be attached to the Customer after the PaymentIntent has been confirmed and any required actions from the user are complete.","maxLength":5000,"type":"string"},"description":{"description":"An arbitrary string attached to the object. Often useful for displaying to users.","maxLength":1000,"type":"string"},"error_on_requires_action":{"description":"Set to `true` to fail the payment attempt if the PaymentIntent transitions into `requires_action`. This parameter is intended for simpler integrations that do not handle customer actions, like [saving cards without authentication](https://stripe.com/docs/payments/save-card-without-authentication). This parameter can only be used with [`confirm=true`](https://stripe.com/docs/api/payment_intents/create#create_payment_intent-confirm).","type":"boolean"},"expand":{"description":"Specifies which fields in the response should be expanded.","items":{"maxLength":5000,"type":"string"},"type":"array"},"mandate":{"description":"ID of the mandate to be used for this payment. This parameter can only be used with [`confirm=true`](https://stripe.com/docs/api/payment_intents/create#create_payment_intent-confirm).","maxLength":5000,"type":"string"},"mandate_data":{"description":"This hash contains details about the Mandate to create. This parameter can only be used with [`confirm=true`](https://stripe.com/docs/api/payment_intents/create#create_payment_intent-confirm).","properties":{"customer_acceptance":{"properties":{"accepted_at":{"format":"unix-time","type":"integer"},"offline":{"title":"offline_param","type":"object"},"online":{"properties":{"ip_address":{"type":"string"},"user_agent":{"maxLength":5000,"type":"string"}},"required":["ip_address","user_agent"],"title":"online_param","type":"object"},"type":{"enum":["offline","online"],"maxLength":5000,"type":"string"}},"required":["type"],"title":"customer_acceptance_param","type":"object"}},"required":["customer_acceptance"],"title":"secret_key_param","type":"object"},"metadata":{"additionalProperties":{"type":"string"},"description":"Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.","type":"object"},"off_session":{"anyOf":[{"type":"boolean"},{"enum":["one_off","recurring"],"maxLength":5000,"type":"string"}],"description":"Set to `true` to indicate that the customer is not in your checkout flow during this payment attempt, and therefore is unable to authenticate. This parameter is intended for scenarios where you collect card details and [charge them later](https://stripe.com/docs/payments/cards/charging-saved-cards). This parameter can only be used with [`confirm=true`](https://stripe.com/docs/api/payment_intents/create#create_payment_intent-confirm)."},"on_behalf_of":{"description":"The Stripe account ID for which these funds are intended. For details, see the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts).","type":"string"},"payment_method":{"description":"ID of the payment method (a PaymentMethod, Card, or [compatible Source](https://stripe.com/docs/payments/payment-methods/transitioning#compatibility) object) to attach to this PaymentIntent.\n\nIf this parameter is omitted with `confirm=true`, `customer.default_source` will be attached as this PaymentIntent's payment instrument to improve the migration experience for users of the Charges API. We recommend that you explicitly provide the `payment_method` going forward.","maxLength":5000,"type":"string"},"payment_method_data":{"description":"If provided, this hash will be used to create a PaymentMethod. The new PaymentMethod will appear\nin the [payment_method](https://stripe.com/docs/api/payment_intents/object#payment_intent_object-payment_method)\nproperty on the PaymentIntent.","properties":{"acss_debit":{"properties":{"account_number":{"maxLength":5000,"type":"string"},"institution_number":{"maxLength":5000,"type":"string"},"transit_number":{"maxLength":5000,"type":"string"}},"required":["account_number","institution_number","transit_number"],"title":"payment_method_param","type":"object"},"afterpay_clearpay":{"title":"param","type":"object"},"alipay":{"title":"param","type":"object"},"au_becs_debit":{"properties":{"account_number":{"maxLength":5000,"type":"string"},"bsb_number":{"maxLength":5000,"type":"string"}},"required":["account_number","bsb_number"],"title":"param","type":"object"},"bacs_debit":{"properties":{"account_number":{"maxLength":5000,"type":"string"},"sort_code":{"maxLength":5000,"type":"string"}},"title":"param","type":"object"},"bancontact":{"title":"param","type":"object"},"billing_details":{"properties":{"address":{"anyOf":[{"properties":{"city":{"maxLength":5000,"type":"string"},"country":{"maxLength":5000,"type":"string"},"line1":{"maxLength":5000,"type":"string"},"line2":{"maxLength":5000,"type":"string"},"postal_code":{"maxLength":5000,"type":"string"},"state":{"maxLength":5000,"type":"string"}},"title":"billing_details_address","type":"object"},{"enum":[""],"type":"string"}]},"email":{"anyOf":[{"type":"string"},{"enum":[""],"type":"string"}]},"name":{"maxLength":5000,"type":"string"},"phone":{"maxLength":5000,"type":"string"}},"title":"billing_details_inner_params","type":"object"},"boleto":{"properties":{"tax_id":{"maxLength":5000,"type":"string"}},"required":["tax_id"],"title":"param","type":"object"},"eps":{"properties":{"bank":{"enum":["arzte_und_apotheker_bank","austrian_anadi_bank_ag","bank_austria","bankhaus_carl_spangler","bankhaus_schelhammer_und_schattera_ag","bawag_psk_ag","bks_bank_ag","brull_kallmus_bank_ag","btv_vier_lander_bank","capital_bank_grawe_gruppe_ag","dolomitenbank","easybank_ag","erste_bank_und_sparkassen","hypo_alpeadriabank_international_ag","hypo_bank_burgenland_aktiengesellschaft","hypo_noe_lb_fur_niederosterreich_u_wien","hypo_oberosterreich_salzburg_steiermark","hypo_tirol_bank_ag","hypo_vorarlberg_bank_ag","marchfelder_bank","oberbank_ag","raiffeisen_bankengruppe_osterreich","schoellerbank_ag","sparda_bank_wien","volksbank_gruppe","volkskreditbank_ag","vr_bank_braunau"],"maxLength":5000,"type":"string"}},"title":"param","type":"object"},"fpx":{"properties":{"bank":{"enum":["affin_bank","agrobank","alliance_bank","ambank","bank_islam","bank_muamalat","bank_rakyat","bsn","cimb","deutsche_bank","hong_leong_bank","hsbc","kfh","maybank2e","maybank2u","ocbc","pb_enterprise","public_bank","rhb","standard_chartered","uob"],"maxLength":5000,"type":"string","x-stripeBypassValidation":true}},"required":["bank"],"title":"param","type":"object"},"giropay":{"title":"param","type":"object"},"grabpay":{"title":"param","type":"object"},"ideal":{"properties":{"bank":{"enum":["abn_amro","asn_bank","bunq","handelsbanken","ing","knab","moneyou","rabobank","regiobank","revolut","sns_bank","triodos_bank","van_lanschot"],"maxLength":5000,"type":"string"}},"title":"param","type":"object"},"interac_present":{"title":"param","type":"object"},"klarna":{"properties":{"dob":{"properties":{"day":{"type":"integer"},"month":{"type":"integer"},"year":{"type":"integer"}},"required":["day","month","year"],"title":"date_of_birth","type":"object"}},"title":"param","type":"object"},"metadata":{"additionalProperties":{"type":"string"},"type":"object"},"oxxo":{"title":"param","type":"object"},"p24":{"properties":{"bank":{"enum":["alior_bank","bank_millennium","bank_nowy_bfg_sa","bank_pekao_sa","banki_spbdzielcze","blik","bnp_paribas","boz","citi_handlowy","credit_agricole","envelobank","etransfer_pocztowy24","getin_bank","ideabank","ing","inteligo","mbank_mtransfer","nest_przelew","noble_pay","pbac_z_ipko","plus_bank","santander_przelew24","tmobile_usbugi_bankowe","toyota_bank","volkswagen_bank"],"type":"string","x-stripeBypassValidation":true}},"title":"param","type":"object"},"sepa_debit":{"properties":{"iban":{"maxLength":5000,"type":"string"}},"required":["iban"],"title":"param","type":"object"},"sofort":{"properties":{"country":{"enum":["AT","BE","DE","ES","IT","NL"],"type":"string"}},"required":["country"],"title":"param","type":"object"},"type":{"enum":["acss_debit","afterpay_clearpay","alipay","au_becs_debit","bacs_debit","bancontact","boleto","eps","fpx","giropay","grabpay","ideal","klarna","oxxo","p24","sepa_debit","sofort","wechat_pay"],"type":"string","x-stripeBypassValidation":true},"wechat_pay":{"title":"param","type":"object"}},"required":["type"],"title":"payment_method_data_params","type":"object"},"payment_method_options":{"description":"Payment-method-specific configuration for this PaymentIntent.","properties":{"acss_debit":{"anyOf":[{"properties":{"mandate_options":{"properties":{"custom_mandate_url":{"anyOf":[{"type":"string"},{"enum":[""],"type":"string"}]},"interval_description":{"maxLength":500,"type":"string"},"payment_schedule":{"enum":["combined","interval","sporadic"],"type":"string"},"transaction_type":{"enum":["business","personal"],"type":"string"}},"title":"payment_intent_payment_method_options_mandate_options_param","type":"object"},"verification_method":{"enum":["automatic","instant","microdeposits"],"type":"string","x-stripeBypassValidation":true}},"title":"payment_intent_payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"afterpay_clearpay":{"anyOf":[{"properties":{"reference":{"maxLength":128,"type":"string"}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"alipay":{"anyOf":[{"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"au_becs_debit":{"anyOf":[{"title":"payment_intent_payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"bancontact":{"anyOf":[{"properties":{"preferred_language":{"enum":["de","en","fr","nl"],"type":"string"}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"boleto":{"anyOf":[{"properties":{"expires_after_days":{"type":"integer"}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"card":{"anyOf":[{"properties":{"cvc_token":{"maxLength":5000,"type":"string"},"installments":{"properties":{"enabled":{"type":"boolean"},"plan":{"anyOf":[{"properties":{"count":{"type":"integer"},"interval":{"enum":["month"],"type":"string"},"type":{"enum":["fixed_count"],"type":"string"}},"required":["count","interval","type"],"title":"installment_plan","type":"object"},{"enum":[""],"type":"string"}]}},"title":"installments_param","type":"object"},"network":{"enum":["amex","cartes_bancaires","diners","discover","interac","jcb","mastercard","unionpay","unknown","visa"],"maxLength":5000,"type":"string","x-stripeBypassValidation":true},"request_three_d_secure":{"enum":["any","automatic"],"maxLength":5000,"type":"string","x-stripeBypassValidation":true},"setup_future_usage":{"enum":["","none","off_session","on_session"],"type":"string"}},"title":"payment_intent_param","type":"object"},{"enum":[""],"type":"string"}]},"card_present":{"anyOf":[{"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"giropay":{"anyOf":[{"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"ideal":{"anyOf":[{"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"interac_present":{"anyOf":[{"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"klarna":{"anyOf":[{"properties":{"preferred_locale":{"enum":["da-DK","de-AT","de-DE","en-AT","en-BE","en-DE","en-DK","en-ES","en-FI","en-FR","en-GB","en-IE","en-IT","en-NL","en-NO","en-SE","en-US","es-ES","es-US","fi-FI","fr-BE","fr-FR","it-IT","nb-NO","nl-BE","nl-NL","sv-FI","sv-SE"],"type":"string","x-stripeBypassValidation":true}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"oxxo":{"anyOf":[{"properties":{"expires_after_days":{"type":"integer"}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"p24":{"anyOf":[{"properties":{"tos_shown_and_accepted":{"type":"boolean"}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"sepa_debit":{"anyOf":[{"properties":{"mandate_options":{"title":"payment_method_options_mandate_options_param","type":"object"}},"title":"payment_intent_payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"sofort":{"anyOf":[{"properties":{"preferred_language":{"enum":["","de","en","es","fr","it","nl","pl"],"type":"string"}},"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]},"wechat_pay":{"anyOf":[{"properties":{"app_id":{"maxLength":5000,"type":"string"},"client":{"enum":["android","ios","web"],"type":"string","x-stripeBypassValidation":true}},"required":["client"],"title":"payment_method_options_param","type":"object"},{"enum":[""],"type":"string"}]}},"title":"payment_method_options_param","type":"object"},"payment_method_types":{"description":"The list of payment method types (e.g. card) that this PaymentIntent is allowed to use. If this is not provided, defaults to [\"card\"].","items":{"maxLength":5000,"type":"string"},"type":"array"},"receipt_email":{"description":"Email address that the receipt for the resulting payment will be sent to. If `receipt_email` is specified for a payment in live mode, a receipt will be sent regardless of your [email settings](https://dashboard.stripe.com/account/emails).","type":"string"},"return_url":{"description":"The URL to redirect your customer back to after they authenticate or cancel their payment on the payment method's app or site. If you'd prefer to redirect to a mobile application, you can alternatively supply an application URI scheme. This parameter can only be used with [`confirm=true`](https://stripe.com/docs/api/payment_intents/create#create_payment_intent-confirm).","type":"string"},"setup_future_usage":{"description":"Indicates that you intend to make future payments with this PaymentIntent's payment method.\n\nProviding this parameter will [attach the payment method](https://stripe.com/docs/payments/save-during-payment) to the PaymentIntent's Customer, if present, after the PaymentIntent is confirmed and any required actions from the user are complete. If no Customer was provided, the payment method can still be [attached](https://stripe.com/docs/api/payment_methods/attach) to a Customer after the transaction completes.\n\nWhen processing card payments, Stripe also uses `setup_future_usage` to dynamically optimize your payment flow and comply with regional legislation and network rules, such as [SCA](https://stripe.com/docs/strong-customer-authentication).","enum":["off_session","on_session"],"type":"string"},"shipping":{"description":"Shipping information for this PaymentIntent.","properties":{"address":{"properties":{"city":{"maxLength":5000,"type":"string"},"country":{"maxLength":5000,"type":"string"},"line1":{"maxLength":5000,"type":"string"},"line2":{"maxLength":5000,"type":"string"},"postal_code":{"maxLength":5000,"type":"string"},"state":{"maxLength":5000,"type":"string"}},"title":"optional_fields_address","type":"object"},"carrier":{"maxLength":5000,"type":"string"},"name":{"maxLength":5000,"type":"string"},"phone":{"maxLength":5000,"type":"string"},"tracking_number":{"maxLength":5000,"type":"string"}},"required":["address","name"],"title":"optional_fields_shipping","type":"object"},"statement_descriptor":{"description":"For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.","maxLength":22,"type":"string"},"statement_descriptor_suffix":{"description":"Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.","maxLength":22,"type":"string"},"transfer_data":{"description":"The parameters used to automatically create a Transfer when the payment succeeds.\nFor more information, see the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts).","properties":{"amount":{"type":"integer"},"destination":{"type":"string"}},"required":["destination"],"title":"transfer_data_creation_params","type":"object"},"transfer_group":{"description":"A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts) for details.","type":"string"},"use_stripe_sdk":{"description":"Set to `true` only when using manual confirmation and the iOS or Android SDKs to handle additional authentication steps.","type":"boolean"}},"required":["amount","currency"],"type":"object"}
```

## Security

### `basicAuth`

- Type: `http`
- Request header: `Authorization`
- Scheme: `basic`
Send credentials in the `Authorization` request header using the `Basic` scheme.

Basic HTTP authentication. Allowed headers-- Authorization: Basic <api_key> | Authorization: Basic <base64 hash of `api_key:`>

### `bearerAuth`

- Type: `http`
- Request header: `Authorization`
- Scheme: `bearer`
- Bearer format: `auth-scheme`
Send the token in the `Authorization` request header using the `Bearer` scheme.

Bearer HTTP authentication. Allowed headers-- Authorization: Bearer <api_key>

## Responses

### `200`

Successful response.

### `application/json`

- Type: `object`

A PaymentIntent guides you through the process of collecting a payment from your customer.
We recommend that you create exactly one PaymentIntent for each order or
customer session in your system. You can reference the PaymentIntent later to
see the history of payment attempts for a particular session.

A PaymentIntent transitions through
[multiple statuses](https://stripe.com/docs/payments/intents#intent-statuses)
throughout its lifetime as it interfaces with Stripe.js to perform
authentication flows and ultimately creates at most one successful charge.

Related guide: [Payment Intents API](https://stripe.com/docs/payments/payment-intents).

```json
{"description":"A PaymentIntent guides you through the process of collecting a payment from your customer.\nWe recommend that you create exactly one PaymentIntent for each order or\ncustomer session in your system. You can reference the PaymentIntent later to\nsee the history of payment attempts for a particular session.\n\nA PaymentIntent transitions through\n[multiple statuses](https://stripe.com/docs/payments/intents#intent-statuses)\nthroughout its lifetime as it interfaces with Stripe.js to perform\nauthentication flows and ultimately creates at most one successful charge.\n\nRelated guide: [Payment Intents API](https://stripe.com/docs/payments/payment-intents).","properties":{"amount":{"description":"Amount intended to be collected by this PaymentIntent. A positive integer representing how much to charge in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal) (e.g., 100 cents to charge $1.00 or 100 to charge ¥100, a zero-decimal currency). The minimum amount is $0.50 US or [equivalent in charge currency](https://stripe.com/docs/currencies#minimum-and-maximum-charge-amounts). The amount value supports up to eight digits (e.g., a value of 99999999 for a USD charge of $999,999.99).","type":"integer"},"amount_capturable":{"description":"Amount that can be captured from this PaymentIntent.","type":"integer"},"amount_received":{"description":"Amount that was collected by this PaymentIntent.","type":"integer"},"application":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/application"}],"description":"ID of the Connect application that created the PaymentIntent.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/application"}]}},"application_fee_amount":{"description":"The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account. The amount of the application fee collected will be capped at the total payment amount. For more information, see the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts).","nullable":true,"type":"integer"},"automatic_payment_methods":{"anyOf":[{"$ref":"#/components/schemas/payment_flows_automatic_payment_methods_payment_intent"}],"description":"Settings to configure compatible payment methods from the [Stripe Dashboard](https://dashboard.stripe.com/settings/payment_methods)","nullable":true},"canceled_at":{"description":"Populated when `status` is `canceled`, this is the time at which the PaymentIntent was canceled. Measured in seconds since the Unix epoch.","format":"unix-time","nullable":true,"type":"integer"},"cancellation_reason":{"description":"Reason for cancellation of this PaymentIntent, either user-provided (`duplicate`, `fraudulent`, `requested_by_customer`, or `abandoned`) or generated by Stripe internally (`failed_invoice`, `void_invoice`, or `automatic`).","enum":["abandoned","automatic","duplicate","failed_invoice","fraudulent","requested_by_customer","void_invoice"],"nullable":true,"type":"string"},"capture_method":{"description":"Controls when the funds will be captured from the customer's account.","enum":["automatic","manual"],"type":"string"},"charges":{"description":"Charges that were created by this PaymentIntent, if any.","properties":{"data":{"description":"This list only contains the latest charge, even if there were previously multiple unsuccessful charges. To view all previous charges for a PaymentIntent, you can filter the charges list using the `payment_intent` [parameter](https://stripe.com/docs/api/charges/list#list_charges-payment_intent).","items":{"$ref":"#/components/schemas/charge"},"type":"array"},"has_more":{"description":"True if this list has another page of items after this one that can be fetched.","type":"boolean"},"object":{"description":"String representing the object's type. Objects of the same type share the same value. Always has the value `list`.","enum":["list"],"type":"string"},"url":{"description":"The URL where this list can be accessed.","maxLength":5000,"type":"string"}},"required":["data","has_more","object","url"],"title":"PaymentFlowsPaymentIntentResourceChargeList","type":"object","x-expandableFields":["data"]},"client_secret":{"description":"The client secret of this PaymentIntent. Used for client-side retrieval using a publishable key. \n\nThe client secret can be used to complete a payment from your frontend. It should not be stored, logged, embedded in URLs, or exposed to anyone other than the customer. Make sure that you have TLS enabled on any page that includes the client secret.\n\nRefer to our docs to [accept a payment](https://stripe.com/docs/payments/accept-a-payment?integration=elements) and learn about how `client_secret` should be handled.","maxLength":5000,"nullable":true,"type":"string"},"confirmation_method":{"enum":["automatic","manual"],"type":"string"},"created":{"description":"Time at which the object was created. Measured in seconds since the Unix epoch.","format":"unix-time","type":"integer"},"currency":{"description":"Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).","type":"string"},"customer":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/customer"},{"$ref":"#/components/schemas/deleted_customer"}],"description":"ID of the Customer this PaymentIntent belongs to, if one exists.\n\nPayment methods attached to other Customers cannot be used with this PaymentIntent.\n\nIf present in combination with [setup_future_usage](https://stripe.com/docs/api#payment_intent_object-setup_future_usage), this PaymentIntent's payment method will be attached to the Customer after the PaymentIntent has been confirmed and any required actions from the user are complete.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/customer"},{"$ref":"#/components/schemas/deleted_customer"}]}},"description":{"description":"An arbitrary string attached to the object. Often useful for displaying to users.","maxLength":5000,"nullable":true,"type":"string"},"id":{"description":"Unique identifier for the object.","maxLength":5000,"type":"string"},"invoice":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/invoice"}],"description":"ID of the invoice that created this PaymentIntent, if it exists.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/invoice"}]}},"last_payment_error":{"anyOf":[{"$ref":"#/components/schemas/api_errors"}],"description":"The payment error encountered in the previous PaymentIntent confirmation. It will be cleared if the PaymentIntent is later updated for any reason.","nullable":true},"livemode":{"description":"Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.","type":"boolean"},"metadata":{"additionalProperties":{"maxLength":500,"type":"string"},"description":"Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format. For more information, see the [documentation](https://stripe.com/docs/payments/payment-intents/creating-payment-intents#storing-information-in-metadata).","type":"object"},"next_action":{"anyOf":[{"$ref":"#/components/schemas/payment_intent_next_action"}],"description":"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.","nullable":true},"object":{"description":"String representing the object's type. Objects of the same type share the same value.","enum":["payment_intent"],"type":"string"},"on_behalf_of":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/account"}],"description":"The account (if any) for which the funds of the PaymentIntent are intended. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts) for details.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/account"}]}},"payment_method":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/payment_method"}],"description":"ID of the payment method used in this PaymentIntent.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/payment_method"}]}},"payment_method_options":{"anyOf":[{"$ref":"#/components/schemas/payment_intent_payment_method_options"}],"description":"Payment-method-specific configuration for this PaymentIntent.","nullable":true},"payment_method_types":{"description":"The list of payment method types (e.g. card) that this PaymentIntent is allowed to use.","items":{"maxLength":5000,"type":"string"},"type":"array"},"processing":{"anyOf":[{"$ref":"#/components/schemas/payment_intent_processing"}],"description":"If present, this property tells you about the processing state of the payment.","nullable":true},"receipt_email":{"description":"Email address that the receipt for the resulting payment will be sent to. If `receipt_email` is specified for a payment in live mode, a receipt will be sent regardless of your [email settings](https://dashboard.stripe.com/account/emails).","maxLength":5000,"nullable":true,"type":"string"},"review":{"anyOf":[{"maxLength":5000,"type":"string"},{"$ref":"#/components/schemas/review"}],"description":"ID of the review associated with this PaymentIntent, if any.","nullable":true,"x-expansionResources":{"oneOf":[{"$ref":"#/components/schemas/review"}]}},"setup_future_usage":{"description":"Indicates that you intend to make future payments with this PaymentIntent's payment method.\n\nProviding this parameter will [attach the payment method](https://stripe.com/docs/payments/save-during-payment) to the PaymentIntent's Customer, if present, after the PaymentIntent is confirmed and any required actions from the user are complete. If no Customer was provided, the payment method can still be [attached](https://stripe.com/docs/api/payment_methods/attach) to a Customer after the transaction completes.\n\nWhen processing card payments, Stripe also uses `setup_future_usage` to dynamically optimize your payment flow and comply with regional legislation and network rules, such as [SCA](https://stripe.com/docs/strong-customer-authentication).","enum":["off_session","on_session"],"nullable":true,"type":"string"},"shipping":{"anyOf":[{"$ref":"#/components/schemas/shipping"}],"description":"Shipping information for this PaymentIntent.","nullable":true},"statement_descriptor":{"description":"For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.","maxLength":5000,"nullable":true,"type":"string"},"statement_descriptor_suffix":{"description":"Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.","maxLength":5000,"nullable":true,"type":"string"},"status":{"description":"Status of this PaymentIntent, one of `requires_payment_method`, `requires_confirmation`, `requires_action`, `processing`, `requires_capture`, `canceled`, or `succeeded`. Read more about each PaymentIntent [status](https://stripe.com/docs/payments/intents#intent-statuses).","enum":["canceled","processing","requires_action","requires_capture","requires_confirmation","requires_payment_method","succeeded"],"type":"string"},"transfer_data":{"anyOf":[{"$ref":"#/components/schemas/transfer_data"}],"description":"The data with which to automatically create a Transfer when the payment is finalized. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts) for details.","nullable":true},"transfer_group":{"description":"A string that identifies the resulting payment as part of a group. See the PaymentIntents [use case for connected accounts](https://stripe.com/docs/payments/connected-accounts) for details.","maxLength":5000,"nullable":true,"type":"string"}},"required":["amount","capture_method","confirmation_method","created","currency","id","livemode","object","payment_method_types","status"],"title":"PaymentIntent","type":"object","x-expandableFields":["application","automatic_payment_methods","charges","customer","invoice","last_payment_error","next_action","on_behalf_of","payment_method","payment_method_options","processing","review","shipping","transfer_data"],"x-resourceId":"payment_intent"}
```

### `default`

Error response.

### `application/json`

- Type: `object`

An error response from the Stripe API

```json
{"description":"An error response from the Stripe API","properties":{"error":{"$ref":"#/components/schemas/api_errors"}},"required":["error"],"type":"object"}
```

## Request examples

### cURL

```shell
curl --request POST \
  --url https://api.stripe.com/v1/payment_intents \
  --header 'content-type: application/x-www-form-urlencoded' \
  --data '{
  "amount": 1,
  "application_fee_amount": 1,
  "automatic_payment_methods": {
    "enabled": true
  },
  "capture_method": "string",
  "confirm": true,
  "confirmation_method": "string",
  "currency": "string",
  "customer": "string",
  "description": "string",
  "error_on_requires_action": true,
  "expand": [
    "string"
  ],
  "mandate": "string",
  "mandate_data": {
    "customer_acceptance": {
      "accepted_at": 1,
      "offline": {},
      "online": {
        "ip_address": "string",
        "user_agent": "string"
      },
      "type": "string"
    }
  },
  "metadata": {},
  "off_session": "string",
  "on_behalf_of": "string",
  "payment_method": "string",
  "payment_method_data": {
    "acss_debit": {
      "account_number": "string",
      "institution_number": "string",
      "transit_number": "string"
    },
    "afterpay_clearpay": {},
    "alipay": {},
    "au_becs_debit": {
      "account_number": "string",
      "bsb_number": "string"
    },
    "bacs_debit": {
      "account_number": "string",
      "sort_code": "string"
    },
    "bancontact": {},
    "billing_details": {
      "address": "string",
      "email": "string",
      "name": "string",
      "phone": "string"
    },
    "boleto": {
      "tax_id": "string"
    },
    "eps": {
      "bank": "string"
    },
    "fpx": {
      "bank": "string"
    },
    "giropay": {},
    "grabpay": {},
    "ideal": {
      "bank": "string"
    },
    "interac_present": {},
    "klarna": {
      "dob": {
        "day": 1,
        "month": 1,
        "year": 1
      }
    },
    "metadata": {},
    "oxxo": {},
    "p24": {
      "bank": "string"
    },
    "sepa_debit": {
      "iban": "string"
    },
    "sofort": {
      "country": "string"
    },
    "type": "string",
    "wechat_pay": {}
  },
  "payment_method_options": {
    "acss_debit": "string",
    "afterpay_clearpay": "string",
    "alipay": "string",
    "au_becs_debit": "string",
    "bancontact": "string",
    "boleto": "string",
    "card": "string",
    "card_present": "string",
    "giropay": "string",
    "ideal": "string",
    "interac_present": "string",
    "klarna": "string",
    "oxxo": "string",
    "p24": "string",
    "sepa_debit": "string",
    "sofort": "string",
    "wechat_pay": "string"
  },
  "payment_method_types": [
    "string"
  ],
  "receipt_email": "string",
  "return_url": "string",
  "setup_future_usage": "string",
  "shipping": {
    "address": {
      "city": "string",
      "country": "string",
      "line1": "string",
      "line2": "string",
      "postal_code": "string",
      "state": "string"
    },
    "carrier": "string",
    "name": "string",
    "phone": "string",
    "tracking_number": "string"
  },
  "statement_descriptor": "string",
  "statement_descriptor_suffix": "string",
  "transfer_data": {
    "amount": 1,
    "destination": "string"
  },
  "transfer_group": "string",
  "use_stripe_sdk": true
}'
```
