action beezup_get_user_list_of_values { label: "Get the list of values related to this list name" provider: beezup method: GET path: "/v2/user/lov/{listName}" encoding: json input: { type: "object" properties: { "Accept-Language": { type: "array" items: { type: "string" } } "If-None-Match": { type: "string" } listName: { type: "string" } } required: ["listName"] additionalProperties: false } output: { type: "object" properties: { items: { type: "array" items: { type: "object" description: "This object is used by LOV apis" required: ["codeIdentifier", "intIdentifier"] properties: { codeIdentifier: { type: "string" } intIdentifier: { type: "integer" format: "int32" } position: { type: "integer" format: "int32" } translationText: { type: "string" } } } } links: { type: "object" properties: { self: { type: "object" } } } } } }