action alertersystem_api_http_method_code_id_get { label: "Retrieves a HttpMethodCode resource." description: "Retrieves a HttpMethodCode resource." provider: alertersystem method: GET path: "/api/http-method-code/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The HttpMethodCode resource is a set of codes that describes the possible methods that can used used when making an HTTP request." properties: { codeName: { type: "string" description: "The name of the code." } id: { type: "string" description: "The unique identifier of the resource instance." } } } }