Skip to main content
Solved

How to add the Customer "Notes" on web service endpoints

  • April 20, 2024
  • 2 replies
  • 165 views

Forum|alt.badge.img

Hello! Does anyone know how I can link the “Notes” section on the Customer screen to create an endpoint? I tried hardcoding “Note Text” under the mapped field section since that is the name on the import scenario, but that did not work. The only 2 options under the Customer Summary are “Add Pop-up note” and “Pop up note text”.

 

Best answer by jinin

Hi @ashleyb ,

You can simply assign the value for the note as shown below. No need to make any changes to the web service endpoint.
 

"CustomerID": {
"value": "01069687"
},
"note": "Test",

 

2 replies

jinin
Pro I
Forum|alt.badge.img+11
  • Pro I
  • Answer
  • April 22, 2024

Hi @ashleyb ,

You can simply assign the value for the note as shown below. No need to make any changes to the web service endpoint.
 

"CustomerID": {
"value": "01069687"
},
"note": "Test",

 


Forum|alt.badge.img
  • Author
  • Varsity II
  • April 22, 2024

Amazing! Thank you SO much!!