List of questions
Related questions
Question 163 - PL-400 discussion
You have the following code:
You have a contact record that uses the GUID 991bf2fd-d40c-4752-9984-26b7c0455b69.
You need to assign the contact record as the primary contact for an account when you create the account.
Which two code segments can you use? Each correct answer presents a complete solution.
NOTE: Each correct selection is worth one point.
var data = { "name": "Contoso account",
"primarycontactid": { "logicalname": "contact",
"id": "991bf2fd-d40c-4752-9984-26b7c0455b69" } };
var data = { "name": "Contoso account", "[email protected]":
"/contacts(991bf2fd-d40c-4752-9984-26b7c0455b69)" };
var data = { "name": "Contoso account", "[email protected]":
"/contacts(991bf2fd-d40c-4752-9984-26b7c0455b69)" };
var data = { "name": "Contoso account", "primarycontactid":
"/contacts(991bf2fd-d40c-4752-9984-26b7c0455b69)" };
0 comments
Leave a comment first