Questions tagged [fulfillment]
115 questions
2
votes
2 answers
Unable to find a matching line for sublist item with key: [orderLine] and value: [1]
I am using SuiteTalk to create an item fulfillment from an existing sales order. This works for non-serialized orders, but not for serialized SOs.
I get the following error:
Unable to find a matching line for sublist item with key: [orderLine] and…

Charl
- 812
- 1
- 8
- 22
2
votes
1 answer
Magento order ID reorder
With set of products in my shopping cart When I login and start an order I get assigned an orderID.
If I then sit on my order, or logout and come back again, my cart products is still there and the order ID I was given (potentailly days ago) is…

Elamurugan
- 3,204
- 13
- 59
- 104
2
votes
1 answer
{"line_items":"Required parameter missing or invalid"}
I am using Shopiy API for fulfill the order in PHP platform. When I try to fulfill the order, I can able to complete and getting a success response fron Shopify. If I pass line_items params then I am getting
{"line_items":"Required parameter…

shiva
- 89
- 8
2
votes
1 answer
what is the maximum allowed field length for the fulfillment tracking number
What is the maximum allowed field length for the fulfillment tracking number if edited through the Shopify API? I have instances where more than one tracking number may be required for a line item (if, for instance, the customer orders enough…

bobsawyer
- 81
- 1
- 1
- 3
1
vote
1 answer
Transform TransferOrder into ItemFulfillment with error SSS_INVALID_SUBLIST_OPERATION
I have a suite script (RESTlet): transform Transfer Order into Item Fulfillment on NetSuite
/**
* This SuiteScript RESTlet transforms a Transfer Order into an Item Fulfillment.
*
* u/NApiVersion 2.x
* u/NScriptType Restlet
* u/NModuleScope…

Thai Thanh Tuan
- 11
- 2
1
vote
3 answers
How to use Stripe payment_intent_data to send email to client after succesful payment?
I cannot figure out how to send email to client after successful payment. Documentation says about setting "payment_intent_data.receipt_email" but what I have below in my code is not working (nothing arrives to emai-box). How am I correctly to set…

M.Y.
- 549
- 1
- 3
- 23
1
vote
0 answers
Netsuite - Add package dimensions to Mark Orders Packed Screen
We are trying to use the bulk fulfillment screens within Netsuite to fulfill our orders, but there isn't an option for adding in package dimensions. (Which is important for UPS/Fedex dimensional weight calculations.)
Does anyone know how to input…

Tory Fitzgerald
- 11
- 1
1
vote
0 answers
Point a specific Dialogflow environment in nodejs
Since DF environments is no longer beta feature, there's no much info and examples about agent versioning and environments.
I have a chatbot in nodejs, I want to use the same DF agent but to have different environments with different intents on each…

sschuf
- 46
- 5
1
vote
1 answer
Account Linking Actions On Google
After Sign is done, my output for "Get Signin" intent is not displayed.
Using Google-Sign in
app.intent("redeem", (conv) => {
conv.ask(new SignIn("To redeem "));
})
app.intent("Get Signin", (conv, params, signin) => {
if (signin.status ===…

Laxmi Anusri Patti
- 41
- 6
1
vote
1 answer
How come Dialogflow doesn't retrieve parameter value from fulfillment response?
At this moment I'm working on an advice conversation about holidays. We've created a feed in firestore with all the posible holidays including an url to the offer. The function we build searches for an offer in firestore and than provides the URL…

Xaviera Huisman
- 21
- 1
1
vote
1 answer
Using paramter values from different intents in Dialogflow
I am new to Dialogflow and I have created a bot that queries different user information through different intents (e.g. first name, name, birthdate etc.). Now I am using a function in fulfillment where I need the parameter values from different…

Sebastian Tillmanns
- 11
- 1
1
vote
1 answer
Can I store a counter across conversation in Inline Fulfillment Dialogflow editor?
I'm making a multiplayer quiz in dialogflow using the inline editor. For now, I have round 1 and 2 working but the score counting not yet.
So maybe it's stupid but I thought 'oh I will make a var and store a count in that. Every time a function is…

Mariette Edel
- 77
- 1
- 9
1
vote
1 answer
How to fire POST request using inline editor in dialogflow?
Code:
var rp = require('request-promise');
var options = {
method: 'POST',
uri: 'http://c663fe13.ngrok.io/ap/lighton',
body: {"color": 'white'},
json: true // Automatically stringifies…

Harsh Patel
- 6,334
- 10
- 40
- 73
1
vote
1 answer
Is there a way to push notification via a chatbot deployed in facebook developed with dialogflow w/ node.js for fulfillment
I'm developing a facebook/workplace chatbot using dialogflow with node.js for fulfillment. Can't seem to find resources for pushing notifications.
I want to be able to trigger sending the message by visiting the webhook url.

n_generot
- 11
- 3
1
vote
1 answer
Dialogflow - Fulfillment - Add a list of Intendees
i'm trying to make a small chatbot which can take appointment.
I didn't find a code allowing me to add the intendees dynamically.
My agent have an array of email :
agent.parameters.invites[0] => email 1
agent.parameters.invites[1] => email 2…

Jean-Pierre Vuong
- 13
- 2