action figshare_custom_fields_list { label: "Private account institution group custom fields" description: "Returns the custom fields in the group the user belongs to, or the ones in the group specified, if the user has access." provider: figshare method: GET path: "/account/institution/custom_fields" encoding: json input: { type: "object" properties: { group_id: { type: "integer" format: "int64" } } additionalProperties: false } output: { type: "array" items: { type: "object" required: ["id", "name", "field_type"] properties: { field_type: { type: "string" description: "Custom field type" enum: ["text", "textarea", "dropdown", "url", "email", "date", "dropdown_large_list"] } id: { type: "integer" format: "int64" description: "Custom field id" } name: { type: "string" description: "Custom field name" } } } } }