Skip to content
This repository was archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
30 lines (23 loc) · 5.72 KB

CreatePaymentRequest.md

File metadata and controls

30 lines (23 loc) · 5.72 KB

CreatePaymentRequest

Description

Creates a payment from the source (nonce, card on file, etc.) The PAYMENTS_WRITE_ADDITIONAL_RECIPIENTS OAuth permission is required to enable application fees. For more information, see Payments and Refunds Overview. For information about application fees in a payment, see Collect Fees.

Properties

Name Type Description Notes
sourceId String The ID for the source of funds for this payment. This can be a nonce generated by the Payment Form or a card on file made with the Customers API.
idempotencyKey String A unique string that identifies this CreatePayment request. Keys can be any valid string but must be unique for every CreatePayment request. Max: 45 characters See Idempotency keys for more information.
amountMoney Money The amount of money to accept for this payment, not including `tip_money`. Must be specified in the smallest denomination of the applicable currency. For example, US dollar amounts are specified in cents. See Working with monetary amounts for details. The currency code must match the currency associated with the business that is accepting the payment.
tipMoney Money The amount designated as a tip, in addition to `amount_money` Must be specified in the smallest denomination of the applicable currency. For example, US dollar amounts are specified in cents. See Working with monetary amounts for details. The currency code must match the currency associated with the business that is accepting the payment. [optional]
appFeeMoney Money The amount of money the developer is taking as a fee for facilitating the payment on behalf of the seller. Cannot be more than 90% of the total amount of the Payment. Must be specified in the smallest denomination of the applicable currency. For example, US dollar amounts are specified in cents. See Working with monetary amounts for details. The currency code must match the currency associated with the business that is accepting the payment. For more information about the application fee scenario, see Collect Fees. [optional]
autocomplete Boolean If set to `true`, this payment will be completed when possible. If set to `false`, this payment will be held in an approved state until either explicitly completed (captured) or canceled (voided). For more information, see Delayed Payments. Default: true [optional]
orderId String Associate a previously created order with this payment [optional]
customerId String The ID of the customer associated with the payment. Required if the `source_id` refers to a card on file created using the Customers API. [optional]
locationId String The location ID to associate with the payment. If not specified, the default location is used. [optional]
referenceId String A user-defined ID to associate with the payment. You can use this field to associate the payment to an entity in an external system. For example, you might specify an order ID that is generated by a third-party shopping cart. Limit 40 characters. [optional]
verificationToken String An identifying token generated by `SqPaymentForm.verifyBuyer()`. Verification tokens encapsulate customer device information and 3-D Secure challenge results to indicate that Square has verified the buyer identity. See the SCA Overview for more. [optional]
acceptPartialAuthorization Boolean If set to true and charging a Square Gift Card, a payment may be returned with amount_money equal to less than what was requested. Example, a request for $20 when charging a Square Gift Card with balance of $5 wil result in an APPROVED payment of $5. You may choose to prompt the buyer for an additional payment to cover the remainder, or cancel the gift card payment. Cannot be `true` when `autocomplete = true`. For more information, see Partial amount with Square gift cards. Default: false [optional] [beta]
buyerEmailAddress String The buyer's e-mail address [optional]
billingAddress Address The buyer's billing address. [optional]
shippingAddress Address The buyer's shipping address. [optional]
note String An optional note to be entered by the developer when creating a payment Limit 500 characters. [optional]
statementDescriptionIdentifier String Optional additional payment information to include on the customer's card statement as part of statement description. This can be, for example, an invoice number, ticket number, or short description that uniquely identifies the purchase. Limit 20 characters. Note that the statement_description_identifier may get truncated on the statement description to fit the required information including the Square identifier (SQ *) and name of the merchant taking the payment. [optional] [beta]