Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 1.11 KB

create-customer-card-response.md

File metadata and controls

42 lines (32 loc) · 1.11 KB

Create Customer Card Response

Defines the fields that are included in the response body of a request to the CreateCustomerCard endpoint.

Either errors or card is present in a given response (never both).

Structure

CreateCustomerCardResponse

Fields

Name Type Tags Description
errors Error[] | undefined Optional Any errors that occurred during the request.
card Card | undefined Optional Represents the payment details of a card to be used for payments. These
details are determined by the payment token generated by Web Payments SDK.

Example (as JSON)

{
  "card": {
    "billing_address": {
      "address_line_1": "500 Electric Ave",
      "address_line_2": "Suite 600",
      "administrative_district_level_1": "NY",
      "country": "US",
      "locality": "New York",
      "postal_code": "10003"
    },
    "card_brand": "VISA",
    "cardholder_name": "Amelia Earhart",
    "exp_month": 11,
    "exp_year": 2018,
    "id": "icard-card_id",
    "last_4": "1111"
  }
}