action meshery_id_get_meshery_application { label: "Handle GET request for Meshery Application with the given id" description: "Fetches the list of all applications saved by the current user" provider: meshery method: GET path: "/api/application/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }