Sign in

Add custom field to project

documented

Associate a custom field with a project.

POST /projects/{project_gid}/custom_fieldsProjectsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://app.asana.com/api/1.0/projects/{{$project_gid}}/addCustomFieldSetting" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"data": {"custom_field": {"name": "{{$custom_field_name}}", "enum_options": [{"name": "{{$enum_option1}}"}, {"name": "{{$enum_option2}}"}], "resource_subtype": "{{$custom_field_subtype}}"}}}'
Add custom field to project · Asana · OpenIntegrations