No content to show
User Activity
12-01-2022
We purchase multiple items for try-on.Then we ship them.Only some items are returned.In this case, I was planning to use the order edit api to delete the items before the payment is made, but I can't edit the order when the items have been fullfilled...
I would like to use orderCreateMandatePayment, but where can I get the mandateID parameter?https://shopify.dev/api/admin-graphql/2022-07/mutations/orderCreateMandatePayment
11-17-2022
I am considering implementing try before you buy.I would like to be able to add products as try-before-you-buy items so that they can be registered within the app page.Do I need to incorporate the UI into the shopify product detail page as a conventi...
I executed this github action, but I get the following error.Does anyone know how to resolve this? name: Push app extension code
on:
push:
branches:
- main
pull_request:
jobs:
build:
name: Build
runs-on: macos-latest
s...
https://shopify.dev/apps/purchase-options/deferred/modeling#lifecycle-of-a-deferred-purchase-optionprovides interface for managing orders with deferred purchase optioncharges against vaulted payment method payment scheduleWhich API do these use?
If I want to change an order with an authorization status to paid via API and run the payment, which API should I use?
I would like to obtain the payment date of an order.From what I see, it looks like I need to use Transanction, not the Order API.But I don't understand the KIND property.Is there a better way or can you tell me about Transaction?
04-17-2022
I'm assuming the Cancel API will bring the inventory back, but the location doesn't seem to be correct.The API doesn't seem to allow me to specify a location, is there any solution?
I am getting multiple variants as followsI'm using pip install shopifyAPI variant_ids = "342523524,24535242,...."
shopify_variants = shopify.Variant.find(ids=variant_ids, limit) Sometimes it works, sometimes it doesn't. Is this correct? Or is it a so...