Skip to main content

customerSubscriptionContractCreateSkipGiftOrder

顧客向けスキップギフト注文API

customerSubscriptionContractCreateSkipGiftOrder(
subscriptionContractId: String!
customerId: String!
): ResultCustomerSubscriptionContractCreateSkipGiftOrder

Arguments

customerSubscriptionContractCreateSkipGiftOrder.subscriptionContractId ● String! non-null scalar

契約情報のShopify管理ID ※必須

  • 説明: 処理対象契約の globally-unique ID.
  • 例: "gid://shopify/SubscriptionContract/123456789"

customerSubscriptionContractCreateSkipGiftOrder.customerId ● String! non-null scalar

顧客ID ※必須

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

Type

ResultCustomerSubscriptionContractCreateSkipGiftOrder object

顧客向けスキップギフト注文APIのレスポンス

Example

mutation {
customerSubscriptionContractCreateSkipGiftOrder(
subscriptionContractId: "gid://shopify/SubscriptionContract/123456789"
customerId: "gid://shopify/Customer/987654321"
) {
subscriptionBillingAttemptId
ready
createdAt
isSkipGift
}
}