action files_get_behaviors_id { label: "Show Behavior" description: "Show Behavior" provider: files method: GET path: "/behaviors/{id}" encoding: json input: { type: "object" properties: { id: { type: "integer" format: "int32" } } required: ["id"] additionalProperties: false } output: { 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." } } } }