action files_get_behaviors { label: "List Behaviors" description: "List Behaviors" provider: files method: GET path: "/behaviors" encoding: json input: { type: "object" properties: { behavior: { type: "string" } cursor: { type: "string" } filter: { type: "object" } filter_gt: { type: "object" } filter_gteq: { type: "object" } filter_like: { type: "object" } filter_lt: { type: "object" } filter_lteq: { type: "object" } per_page: { type: "integer" format: "int32" } sort_by: { type: "object" } } additionalProperties: false } output: { type: "array" items: { type: "object" description: "List Behaviors" properties: { attachment_url: { type: "string" description: "URL for attached file" } behavior: { type: "string" description: "Behavior type." } description: { type: "string" description: "Description for this behavior." } id: { type: "integer" format: "int32" description: "Folder behavior ID" } name: { type: "string" description: "Name for this behavior." } path: { type: "string" description: "Folder path" } value: { type: "object" description: "Settings for this behavior. See the section above for an example value to provide here. Formatting is different for each Behavior type. May be sent as nested JSON or a single JSON-encoded string. If using XML encoding for the API call, this data must be sent as a JSON-encoded string." } } } } }