Skip to main content

customerSubscriptionContractPaymentMethod

顧客向け定期購買の決済情報取得

customerSubscriptionContractPaymentMethod(
subscriptionContractId: String!
customerId: String!
): ResultCustomerSubscriptionContractPaymentMethod

Arguments

customerSubscriptionContractPaymentMethod.subscriptionContractId ● String! non-null scalar

定期購買契約ID ※必須

  • 説明: 処理対象定期購買契約の globally-unique ID.
  • 例: "gid://shopify/SubscriptionContract/1234567890"

customerSubscriptionContractPaymentMethod.customerId ● String! non-null scalar

顧客ID ※必須

  • 説明: 処理対象顧客の globally-unique ID.
  • 例: "gid://shopify/Customer/1234567890"

Type

ResultCustomerSubscriptionContractPaymentMethod object

顧客向け定期購買の決済情報

Example

{
customerSubscriptionContractPaymentMethod(
subscriptionContractId: "gid://shopify/SubscriptionContract/1234567890"
customerId: "gid://shopify/Customer/1234567890"
) {
type
brand
expiryMonth
expiryYear
lastDigits
name
maskedNumber
inactive
paypalAccountEmail
}
}