action meshery_id_get_single_performance_profile { label: "Handle GET requests for performance results of a profile" description: "Returns single performance profile with the given id" provider: meshery method: GET path: "/api/user/performance/profiles/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" format: "uuid" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }