customerSubscriptionContractUpdateNote
顧客向け注文メモ更新
customerSubscriptionContractUpdateNote(
subscriptionContractId: String!
customerId: String!
note: String!
): ResultCustomerExecution
Arguments
customerSubscriptionContractUpdateNote.subscriptionContractId
● String!
non-null scalar
契約情報のShopify管理ID
- 説明: 処理対象契約の globally-unique ID.
- 例:
"gid://shopify/SubscriptionContract/123456789"
customerSubscriptionContractUpdateNote.customerId
● String!
non-null scalar
顧客ID
- 説明: 処理対象顧客の globally-unique ID.
- 例:
"gid://shopify/Customer/123456789"
customerSubscriptionContractUpdateNote.note
● String!
non-null scalar
注文メモ
- 説明: 注文メモ
- 例:
"メモ"
Type
ResultCustomerExecution
object
顧客向け処理結果
Example
mutation {
customerSubscriptionContractUpdateNote(
subscriptionContractId: "gid://shopify/SubscriptionContract/123456789"
customerId: "gid://shopify/Customer/987654321"
note: "メモ"
) {
success
}
}