No content to show
User Activity
Did you manage to find a solution? I'm also looking into how to import tax_code for each line_item
I guess, but doesn't this defeat the whole purpose of the bulk API if I now have to do the bulk API and then also a normal rest/graphql query? If I understand you correctly I shouldGet all orderIds and refund_ids from the bulk query based on my time ...
12-10-2023
I'm trying to get all the refunds for orders that were made between a date range (a month), but this is a heavy query so I decided to use the bulk API. The issue is that it has it's limitations when it comes to connections inside a list I get this er...
Yeah I think all endpoints should be able to take in a date range to filter instead of specific IDs only, the developer experience would be much better this way since multiple roundtrips would not be needed
Yeah I think all endpoints should be able to take in a date range to filter instead of specific IDs only, the developer experience would be much better this way since multiple roundtrips would not be needed
Could you specify which Shopify REST endpoint one could get the transactionID that i would see on the Paypal side? A link or the name of the rest endpoint would be really helpfull, thanks
09-02-2023
I managed to find a solution now. I basically just set a header in the rawRequest param and the it's propagated to the callback, although I don't know if this is good practice nor do I know if this is safe...but hey it works... res.setHeader...
I have a Next Js app that initiates the Oauth flow for a user. export default async function handler(
req: NextApiRequest,
res: NextApiResponse
) {
try {
let {store} = req.query
store = store as string;
return awai...
07-05-2023
What I want to achieve: For a specific payout I want to fetch all transactions associated with it, and then for each transaction I want to display transaction information like amount, type of transaction, currency, payment gateway, if it was card, ca...
I'm using the REST API to reconcile orders and payouts from Shopify payments. I have orders which was refunded but I can't seem to reconcile the refund transactions, here example the details. order_amount: €265fee: €3payout_amount = order_amount - fe...
@Liam is this bug? could you try to replicate it on your side? if so then this needs to be fixed
No I haven't, adding yet another language to my app adds much more complexity than I'd like, especially for only one endpoint. The way got around this was to use the "With a plain REST client" approach rather than the "REST resources" approach as des...
I using the Node.js client library to fetch balance transactions like this: let options = {
session: session,
limit: 10,
payout_id: 1
}
const response = await shopify.rest.PaymentTransaction.transactions(options); I only g...
I have this grapql query that I runt using the Shopify GraphiQL App. {
shop {
name
currencyCode
}
shopifyPaymentsAccount {
id
payouts(transactionType: DEPOSIT) {
edges {
node {
id
issuedAt
...
I have a web application where I have integrated with different e-commerce solutions (Shopify, Klarna, Adyen, Woocommerce etc). I want my clients (who are merchants) to be able to go into my platform and grant me access to their data by clicking a bu...
My Accepted Solutions
Subject | Views | Posted |
---|---|---|
1399 | 09-02-2023 11:45 AM |