Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ADF BC to RESTFul API How to use Delete method

user1817266Mar 15 2022 — edited Apr 12 2022

Greeting Everyone:
I use jdeveloper 12.2.1.3.0 BC to build RESTFul. Table is multi-part key(Chkdat,Ofc).
How to delete data using delete method?
( table with master-detail structure)The EndPoint is as follows:
https://dmzast8.fpg.com.tw/VBCS_TEST1/rest/v1.0/Table1view/describe
get method example:
https://dmzast8.fpg.com.tw/VBCS_TEST1/rest/v1.0/Table1view?q=Chkdat=2022-03-03&Ofc=909&onlyData=true
response payload:
{
"items": [
{
"Chkdat": "2022-03-03T08:00:00+08:00",
"Ofc": "909",
"Wk": "1",
"Mgr": null
}
],
"count": 1,
"hasMore": false,
"limit": 5,
"offset": 0,
"links": [
{
"rel": "self",
"href": "http://dmzast8.fpg.com.tw:80/VBCS_TEST1/rest/v1.0/Table1view",
"name": "Table1view",
"kind": "collection"
}
]
}

Comments
Post Details
Added on Mar 15 2022
2 comments
399 views