web
You’re offline. This is a read only version of the page.
close
Skip to main content

Notifications

Announcements

No record found.

Community site session details

Community site session details

Session Id :

Read data using field list, filter criteria and count of records from D365FO using 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, filter criteria and count of records 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) Count number of customers.

Add Request

3301.NewRequest.jpg

Request Name

7737.RequestName.jpg

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

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

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

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

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

Step 6: Under Headers group, created new entries for

7357.HeaderParameters.jpg

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

86822.Output.jpg

Regards,

Chaitanya Golla

Comments

*This post is locked for comments