v1

latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MB
Visa Click to Pay

Update Visa CTP customer billing address

Update the billing address for customer cards in Visa Click to Pay.

This endpoint generates a Click to Pay event generated event.

Notes:

  • If billing address information is not passed, it is looked for internally. If not found, an error is returned.

  • The process is asynchronous, success or failure is indicated in the generated event.

  • This endpoint takes an account token - an access token encoded with a Pismo account ID.

  • This is a PCI endpoint, use the https://gw-pci.pismolabs.io environment.

put/v1/clicktopay/visa/manage/card

Headers

x-tenantstring required

Pismo organization/tenant ID

x-customer-idinteger required

Customer ID

x-cidstring

Request correlation ID used for tracking on Pismo platform.

Request body

Example request

{
  "cards": [
    {
      "owner_bid": "1000052",
      "card_id": 6743052,
      "billing_address": {
        "city": "San Francisco",
        "state": "RJ",
        "postal_code": "94105",
        "country_code": "USA",
        "address_line1": "1000 Market Street",
        "address_line2": "Building 56",
        "address_line3": "Suite 101"
      }
    }
  ]
}

Response

Accepted