I need to have order list API included transaction details.
I don’t want to call another API to get transaction details with order id as parameter.
Is there any approach to get transaction details in same order list API call ?
I need to have order list API included transaction details.
I don’t want to call another API to get transaction details with order id as parameter.
Is there any approach to get transaction details in same order list API call ?
Hi there ![]()
This sounds like the perfect use case for the Orders query in the admin GraphQL API. You will be able to retrieve the order and transaction information that you need.
An example query could look something like this
{
orders(first: 10) {
nodes {
id
transactions(first: 10) {
amountSet {
shopMoney {
amount
currencyCode
}
}
fees {
flatFeeName
}
accountNumber
authorizationCode
formattedGateway
gateway
manuallyCapturable
createdAt
}
}
}
}
Hello,
Thank you for reply.
I need to get using RESET Api.
Can you please help me, How can I fetch list of order which has been fulfilled and no shipment status is there?