Multiple labels in one job #33
Unanswered
sarkis1997
asked this question in
Q&A
Replies: 2 comments 3 replies
-
@sarkis1997 can you share the link of the documentation? I don't find the Dymo doc. |
Beta Was this translation helpful? Give feedback.
2 replies
-
@sarkis1997 Although we can implement a new utility function to achieve this feature request, I think that this solution could work: const dymoParams = [params1, params2]
const dymoRequests = []
dymoParams.forEach((params) => {
dymoRequests.push(dymoRequestBuilder({
method: "POST",
wsAction: "printLabel",
axiosOtherParams: params,
}))
})
Promise.all(dymoRequests).then((values) => {
console.log(values);
}); |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, is there also any possibility to print multiple labels in one job. In the original documentation there is something like dymo.label.framework.LabelSetBuilder. How can I achieve this with the dymo-react-hooks?
Beta Was this translation helpful? Give feedback.
All reactions