MB-910 Describe Dynamics 365 Sales • Set 2
MB-910 Describe Dynamics 365 Sales Practice Test 2 — 15 questions with explanations. Free, no signup.
A sales team is using the Dynamics 365 Sales API to create an opportunity. The JSON exhibit shows the payload they are sending. The request fails because the product line items are not being added. What is the most likely cause?
Refer to the exhibit.
{
"name": "Cross-sell Opportunity",
"customerid": {
"name": "Contoso Ltd"
},
"totalamount": 50000,
"pricelevelid": {
"name": "Standard Price List"
},
"productlineitems": [
{
"productid": {
"productnumber": "PR-001"
},
"quantity": 10,
"salespricelist": {
"name": "Standard Price List"
}
},
{
"productid": {
"productnumber": "PR-002"
},
"quantity": 5,
"salespricelist": {
"name": "Standard Price List"
}
}
]
}