PL-400 – Question 51

0
297
⚠️ Retired / Legacy Exam: This exam has been retired or replaced. These practice questions are kept for reference only. Please check the official vendor website for current exam versions before studying.

Question 51

HOTSPOT –
You need to use the Dynamics 365 Sales Web API to retrieve metadata information.
How should you complete the Web API queries? To answer, select the appropriate options in the answer area.
NOTE: Each correct selection is worth one point.
Hot Area:

Correct Answer:

Entity: LogicalName –
Querying the EntityMetadata entity type:
GET [Organization URI]/api/data/v9.0/EntityDefinitions(LogicalName=’account’)

Attribute: LogicalName –
Retrieving attributes:
GET [Organization URI]/api/data/v9.0/EntityDefinitions(LogicalName=’account’)/Attributes(

Relationship: SchemaName –
Querying relationship metadata:
Entity relationships can also be queried using the RelationshipDefinitions entity set. You can use a query like the following to get the SchemaName property for every relationship.
GET [Organization URI]/api/data/v9.0/RelationshipDefinitions?$select=SchemaName

Global Option Set: Name –
Querying Global OptionSets:
GET /api/data/v9.0/GlobalOptionSetDefinitions(Name=’metric_goaltype’)
Note: Retrieving items by name is generally easier because you probably already have some reference to the metadata item name in your code. The following table lists the alternate key properties for retrieving metadata items by name.

Reference: https://docs.microsoft.com/en-us/powerapps/developer/data-platform/webapi/query-metadata-web-api