Skip to content

Latest commit

 

History

History
83 lines (75 loc) · 3.48 KB

create-payment-link-request.md

File metadata and controls

83 lines (75 loc) · 3.48 KB

Create Payment Link Request

Structure

CreatePaymentLinkRequest

Fields

Name Type Tags Description
IdempotencyKey string Optional A unique string that identifies this CreatePaymentLinkRequest request.
If you do not provide a unique string (or provide an empty string as the value),
the endpoint treats each request as independent.

For more information, see Idempotency.
Constraints: Maximum Length: 192
Description string Optional A description of the payment link. You provide this optional description that is useful in your
application context. It is not used anywhere.
Constraints: Maximum Length: 4096
QuickPay QuickPay Optional Describes an ad hoc item and price to generate a quick pay checkout link.
For more information,
see Quick Pay Checkout.
Order Order Optional Contains all information related to a single order to process with Square,
including line items that specify the products to purchase. Order objects also
include information about any associated tenders, refunds, and returns.

All Connect V2 Transactions have all been converted to Orders including all associated
itemization data.
CheckoutOptions CheckoutOptions Optional -
PrePopulatedData PrePopulatedData Optional Describes buyer data to prepopulate in the payment form.
For more information,
see Optional Checkout Configurations.
PaymentNote string Optional A note for the payment. After processing the payment, Square adds this note to the resulting Payment.
Constraints: Maximum Length: 500

Example (as JSON)

{
  "idempotency_key": "cd9e25dc-d9f2-4430-aedb-61605070e95f",
  "quick_pay": {
    "location_id": "A9Y43N9ABXZBP",
    "name": "Auto Detailing",
    "price_money": {
      "amount": 10000,
      "currency": "USD"
    }
  },
  "description": "description6",
  "order": {
    "id": "id6",
    "location_id": "location_id0",
    "reference_id": "reference_id4",
    "source": {
      "name": "name4"
    },
    "customer_id": "customer_id4",
    "line_items": [
      {
        "uid": "uid8",
        "name": "name8",
        "quantity": "quantity4",
        "quantity_unit": {
          "measurement_unit": {
            "custom_unit": {
              "name": "name2",
              "abbreviation": "abbreviation4"
            },
            "area_unit": "IMPERIAL_ACRE",
            "length_unit": "IMPERIAL_INCH",
            "volume_unit": "METRIC_LITER",
            "weight_unit": "IMPERIAL_WEIGHT_OUNCE"
          },
          "precision": 54,
          "catalog_object_id": "catalog_object_id0",
          "catalog_version": 12
        },
        "note": "note4",
        "catalog_object_id": "catalog_object_id2"
      }
    ]
  },
  "checkout_options": {
    "allow_tipping": false,
    "custom_fields": [
      {
        "title": "title8"
      },
      {
        "title": "title8"
      }
    ],
    "subscription_plan_id": "subscription_plan_id8",
    "redirect_url": "redirect_url2",
    "merchant_support_email": "merchant_support_email8"
  }
}