ANC
Operators

Field IDs Reference

UUID lookups for dashboard widget filters and scripts.

Field IDs Reference

Widget filters, GraphQL metadata calls, and Boyka's skills all take field UUIDs. This page is the lookup table.

Object IDs

ObjectID
Companyccd95b3f-4a9a-443c-b8f2-01bff6c479ab
Opportunityc779922d-cf25-4a5e-9382-23eb1c02199e
OpportunityTeamAllocation7416ebb0-94d9-4551-bc2e-1991690849c2

Opportunity field IDs

FieldTypeID
probabilityNUMBER22d629a5-c8e4-488a-85fc-f2650dac66bf
proposalDueDateDATE_TIME65b6da7e-a84b-4603-af7e-1bfbb14d808f
substantialCompletionDateDATEf41a1659
paidAmountCURRENCYc592d989
percentPaidNUMBER724c5d5a
accountExecutiveTEXT8ae86200
accountExecutiveEmailTEXT037bae0d
marginCURRENCY44ea22b6
revenue2026CURRENCY3741f86c
margin2026CURRENCY58096d7b
revenue2027CURRENCY3339789a
margin2027CURRENCYb60145ca
proposalStageSELECT0c4f3e5a
prioritySELECT619db9a8
pricingCompleteBOOLEANf58790ec
pricingCompleteDateDATE_TIMEa8ae65db
technologyVendorPartnerTEXTad068a2a
businessUnitSELECTd04948e5-4118-4975-b811-1f1e39002c9e
leagueSELECT891db6b2-8973-4004-8ae7-b204a3f28c45
bidStatusSELECTad436148-604e-4b05-a5a7-9bcc35117410
dealValueCURRENCY6cbd4fc1-b457-49b0-b1aa-2252fd3ba216
amountCURRENCYabe371af-8f95-413f-8e57-eee130a03d3d
stageSELECT09da76a4-8deb-4ea6-a819-42ad92eada4f
closeDateDATE_TIME56c90982-6391-4cdf-8b61-9d0097226807
companyRELATIONfa5178b8-6881-444d-9ed4-8150949129e1

OpportunityTeamAllocation field IDs

FieldTypeID
opportunityRELATION69f054fa
teamRELATIONa07aded9
fiscalYearNUMBER10ee9a9c
revenueCURRENCY3478162c
marginCURRENCY1cf59cda
costCURRENCY08525d01
departmentTEXTdff51275
notesTEXT431c5f0c

Reverse-relation field IDs

On objectReverse relationPoints toField ID
OpportunityteamAllocationsOpportunityTeamAllocationbcc340a7
OpportunityserviceTicketsServiceTicket(via serviceTicket.opportunity)
CompanyteamAllocationsOpportunityTeamAllocation14ef07fd
CompanyserviceTicketsServiceTicket397aa8e1-0445-4580-9a7a-cb6ddca2e73e

Widget filter JSON format

Dashboard widgets take a filter object. Format:

{
  "operator": "AND",
  "children": [
    {
      "fieldMetadataId": "<uuid>",
      "operand": "IS_NOT",
      "value": "[\"WON\"]"
    }
  ]
}

Important formatting rules:

  • SELECT values are JSON-stringified arrays — use "[\"WON\"]", not "WON"
  • Numeric compare values are string-encoded"value":"50", not 50

Operand enum (ViewFilterOperand)

IS · IS_NOT · IS_NOT_NULL · GREATER_THAN_OR_EQUAL · LESS_THAN_OR_EQUAL ·
IS_BEFORE · IS_AFTER · CONTAINS · DOES_NOT_CONTAIN · IS_EMPTY · IS_NOT_EMPTY ·
IS_RELATIVE · IS_IN_PAST · IS_IN_FUTURE · IS_TODAY · VECTOR_SEARCH

How to look up more field IDs

query {
  object(input: {id: "c779922d-cf25-4a5e-9382-23eb1c02199e"}) {
    fields {
      id
      name
      type
      options { value label }
    }
  }
}

Substitute the object ID for any object. Output includes every field's UUID.

On this page