API Docs

List Custom Fields

Learn how to list custom fields using the Blue API.

You can use the Blue API to list custom fields in a specific project. Use the following query:

query ListCustomFields($projectId: ID!) {
  customFields(projectId: $projectId) {
    id
    name
    type
  }
}

And the sample JSON response:

{
  "data": {
    "customFields": [
      {
        "id": "1",