Ice.BO.UD01Svc and delete

Need some help with deleting rows from the UD01 table via REST Api request.

I can successfully Add/Update using …/api/v1/Ice.BO.UD01Svc/UD01s.

I see in the metadata (api/v1/Ice.BO.UD01Svc/$metadata) there is a “DeleteByID” function but I’m not sure how to send the request.

What does the URL look like and what should the body include?

1 Like

https://yourserver/server/api/v2/odata/ddd/Ice.BO.UD01Svc/DeleteByID

payload:

{
  "key1": "string",
  "key2": "string",
  "key3": "string",
  "key4": "string",
  "key5": "string"
}
3 Likes

Thanks Kevin!

1 Like