Release Notes: March 6th, 2023

An update was released to the CoreBridge API. Following are release notes related to new endpoints, changes to existing endpoints, and bug fixes. If you have questions, please contact our support department for assistance through our support site here or by emailing support@corebridge.net.  


ExOrder/AddOrderNotes

AddOrderNotes is a new endpoint that allows API users to add notes to existing orders.


Notes: 

  • Adding binary data like images is not supported.
  • Total character length of string must be <= 2000 characters
  • New notes are appended to the end of any existing notes.
  • A date/time stamp will automatically be added to the new note.


Sample JSON Request:

{
  "orderId": 123, -- only POS INT values allowed, error handling if not found / invalid, IS REQUIRED
  "orderNotes": "Here are some notes to add to my Order!.", -- MAX 2000 CHAR, NOT REQUIRED
  "important": 1 -- toggle the importance of the Order Notes (allowable 0,1) NOT REQUIRED
}