Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Read data from D365FO using Field List through Postman

Chaitanya Golla Profile Picture Chaitanya Golla 17,225

Hi,

In this post we will view the steps to read the data from a given entity using field list from D365FO. For demo purpose, I have chosen CustomerV2 entity.

Step 1: Register D365FO in Azure Platform. Please refer to previous post to view the steps for App registration.

 Application registration of D365FO with Azure 

Step 2: Setup Postman with D365FO. Note: Used environment variables to setup bearer token and authorization in this post.

 Postman Set up with D365FO 

Step 3: Retrieve the OData URL for customer entity. In my case it is https://D365FO URL/data/CustomersV2.

Step 4: Launch Postman, select the Devbox collection and click on three dots. Select Add Request and provide name (say) Read Customers with field list.

Add Request

4251.SelectCustomers_2D00_NewRequest.jpg

Request Name

0333.RequestName.jpg

Step 5: Provide the command for the GET Request with URL as 

{{resource}}/data/CustomersV2?$filter=OrganizationName eq 'TEST'&$select=CustomerAccount,OrganizationName  

where resource is the D365FO URL provided in the environment section.

Here under parameters section, used query options $select, $filter and supplied the values as CustomerAccount,OrganizationName, OrganizationName eq 'TEST' respectively.

Key  Value
$select CustomerAccount,OrganizationName
$filter OrganizationName eq 'TEST'

Step 6: Under Headers group, created new entries for

3056.HeaderParameters.jpg

Step 7: Click on Send button to view the output with the status as 200 OK.

2577.Output.jpg

Regards,

Chaitanya Golla

Comments

*This post is locked for comments