Tracy R
My feedback
32 results found
-
70 votesEvgeny Zaritovskiy responded
Can be done using Theme overrides functionality – by fixing HTML code in the gadget templates. But I’ll be collecting comments to see if suggested user-friendly functionality needed by others.
Tracy R supported this idea · -
1 vote
An error occurred while saving the comment -
2 votesTracy R supported this idea ·
-
2 votesTracy R supported this idea ·
-
60 votesTracy R supported this idea ·
-
19 votesDmitry Smirnov responded
You can upload multiple pictures for one product and configure several product variants. Is that enough or you’d prefer to duplicate items?
Tracy R supported this idea · -
34 votesTracy R supported this idea ·
-
26 votesTracy R supported this idea ·
-
47 votesTracy R supported this idea ·
-
18 votesTracy R supported this idea ·
-
23 votesTracy R supported this idea ·
-
125 votesTracy R supported this idea ·
-
225 votesTracy R supported this idea ·
-
48 votesTracy R supported this idea ·
-
215 votesTracy R supported this idea ·
-
69 votesTracy R supported this idea ·
-
28 votesTracy R supported this idea ·
-
8 votesTracy R supported this idea ·
-
46 votesTracy R supported this idea ·
-
5 votesTracy R supported this idea ·
I just accomplished a similar idea. I was struggling with creating the Array of Collections to get multiple line items into the invoice. Here is how I made it work...
URL: /accounts/{{1.Id}}/invoices/{{6.Id}}
where {{1.Id}} is coming from the WA Get Account Details module and {{6.Id}} is coming from the WA Create Invoice module (or the Google Sheet in your case)
Method: PUT
Query String: leave blank
Body:
{
"DocumentDate": "{{now}}",
"OrderDetails": [{{33.text}}],
"Memo": "this is the Internal Notes",
"PublicMemo": "this is the Comments for payer",
"Id": {{6.Id}}
}
A few notes...
* Only include the things you want to change in the body.
* You MUST have the final Id entry in the body. This is the invoice Id. Even though it is part of the URL, it still needs to be included in the body.
Here's a picture of my Make and API Call module to help you. Note that I do not actually update the Memo and PublicMemo in my module, but I included them above because you mentioned Memo in your question.
Good luck! It's not easy with such limited documentation and examples.