action daniweb_delete_positions_id { label: "delete_positions_ID" description: "Remove an item from the OAuth'ed end user's Curriculum Vitae." provider: daniweb method: DELETE path: "/positions/{ID}" encoding: json input: { type: "object" properties: { ID: { type: "integer" format: "int32" } } required: ["ID"] additionalProperties: false } output: { type: "object" properties: { success: { type: "boolean" } } } }