Last updated 2 months ago
POST /v1/econtract/web_app/document/delete_docs
POST
/v1/econtract/web_app/document/delete_docs
Deletes the specified documents.
10073
OK
200
true
"Dokumen berhasil dihapus"
const response = await fetch('http://{{base_url}}v1/econtract/web_app/document/delete_docs', { method: 'POST', headers: { "Content-Type": "application/json" }, body: JSON.stringify({ "document_id": 10073 }), }); const data = await response.json();
{ "code": 200, "success": true, "msg": "Dokumen berhasil dihapus" }