Release Notes: March 28th, 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/GetOrderNotes

Added to allow the retrieval of notes from an order.


Parameter:  orderId



Sample Request: 


https://yoursubdomain.corebridge.net/api/public/ExOrder/GetOrderNotes?orderId=1234



Sample Response:


{

  "success": true,

  "message": "Successfully retrieve order notes.",

  "orderId": 300,

  "orderNotes": "<p>This is an order note.</p>"

}




ExOrder/DeleteOrderNotes

Added to allow Order Notes to be deleted.


Parameter:  orderId


Notes: 

  • WARNING! Deleted notes cannot be recovered.
  • A response code of 404 Not Found will be returned when the order Id does not exist.


Sample Request:

https://yoursubdomain.corebridge.net/api/public/ExOrder/DeleteOrderNotes?orderId=300



Sample JSON Response:


{

  "success": true,

  "message": "Order notes has been deleted."

}


Login or Signup to post a comment