Skip to main content
Answer

How to get customer specific pricing out of Acumatica via API?

  • March 13, 2022
  • 5 replies
  • 520 views

Forum|alt.badge.img

Hi. Is anyone can give me an advice on how to get customer specific pricing out of Acumatica via API?

Best answer by Naveen Boga

Hi @bernadeth58  Below the REST API to fetch the Customer Price from the Sales Price screen. 

Please find API details and screenshots for reference and hope this helps!!

Method: PUT

API URL: http://localhost/21R1Test/entity/default/20.200.001/SalesPricesInquiry?$expand=SalesPriceDetails

BODY: 

{

"PriceType": {

        "value": "Customer"

    },

    "PriceCode": {

        "value": "AACUSTOMER"

    }

}

 

Screenshots:

 

 

5 replies

Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • Answer
  • March 13, 2022

Hi @bernadeth58  Below the REST API to fetch the Customer Price from the Sales Price screen. 

Please find API details and screenshots for reference and hope this helps!!

Method: PUT

API URL: http://localhost/21R1Test/entity/default/20.200.001/SalesPricesInquiry?$expand=SalesPriceDetails

BODY: 

{

"PriceType": {

        "value": "Customer"

    },

    "PriceCode": {

        "value": "AACUSTOMER"

    }

}

 

Screenshots:

 

 


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • March 14, 2022

Thank you @Naveen Boga! We will try this. 


Forum|alt.badge.img
  • Author
  • Jr Varsity III
  • March 14, 2022

It works @Naveen Boga. Thank you!


Naveen Boga
Captain II
Forum|alt.badge.img+19
  • Captain II
  • March 14, 2022

Awesome :) Thanks for sharing the update @bernadeth58  


  • Freshman I
  • June 1, 2022

There is any way to get the full list of SalesPrice?