action asana_get_custom_field_settings_for_project { label: "Get a project's custom fields" description: "Returns a list of all of the custom fields settings on a project, in compact form. Note that, as in all queries to collections which return compact representation, `opt_fields` can be used to include more data than is returned in the compact representation. See the [getting started guide on input/output options](https://developers.asana.com/docs/#input-output-options) for more information." provider: asana method: GET path: "/projects/{project_gid}/custom_field_settings" encoding: json output: { type: "object" properties: { data: { type: "array" items: { type: "object" } } } } }