action alertersystem_api_http_method_code_get_collection { label: "Retrieves the collection of HttpMethodCode resources." description: "Retrieves the collection of HttpMethodCode resources." provider: alertersystem method: GET path: "/api/http-method-code" encoding: json input: { type: "object" properties: { page: { type: "integer" } "properties[]": { type: "array" items: { type: "string" } } } additionalProperties: false } output: { type: "array" items: { 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." } } } } }