|
- {
- "meta": {
- "$_GET": [
- {
- "type": "text",
- "name": "id"
- }
- ]
- },
- "exec": {
- "steps": [
- {
- "name": "delete",
- "module": "api",
- "action": "send",
- "options": {
- "url": "{{$_ENV.API_BASEURL+'applications/'+$_GET.id}}",
- "method": "DELETE"
- },
- "metaData": {
- "apiUrl": {
- "name": "id",
- "type": "text"
- }
- }
- },
- {
- "name": "OK",
- "module": "core",
- "action": "response",
- "options": {
- "status": 200,
- "data": "OK"
- }
- }
- ]
- }
- }
|