action id4i_list_all_api_key_privileges { label: "List all privileges" description: "Listing all possible API key privileges." provider: id4i method: GET path: "/api/v1/apikeys/privileges" encoding: json input: { type: "object" properties: { id4nConcerning: { type: "boolean" } limit: { type: "integer" format: "int32" } offset: { type: "integer" format: "int32" } } additionalProperties: false } output: { type: "object" required: ["elements", "limit", "offset"] properties: { elements: { type: "array" items: { type: "object" required: ["id4nAssociated", "name"] properties: { allowsBillableOperations: { type: "boolean" } helpText: { type: "string" } id4nAssociated: { type: "boolean" } name: { type: "string" } } } } limit: { type: "integer" format: "int32" description: "The number of returned elements" } offset: { type: "integer" format: "int32" description: "Starting with the n-th element" } total: { type: "integer" format: "int32" description: "The total number of elements" } } } }