Skip to main content
New Participant
August 4, 2026
Solved

How to Display ServiceNow Choice Field Display Values in a Moveworks Conversation Process

  • August 4, 2026
  • 2 replies
  • 44 views

I have a ServiceNow Incident record where the State field is a choice field with the following mappings:

  • 1 = High
  • 2 = Middle
  • 3 = Low

When I retrieve incident INC123456 via the ServiceNow REST API, the response contains "state": "2". In a Moveworks Conversation Process, how can I convert this choice value to its display label (for example, "Middle") before presenting it to the user? Is there a built-in way to retrieve or map ServiceNow choice display values?

    Best answer by Kevin Mok

    Hey ​@yguo03 - could you try updating your http action and add the query param sysparm_display_value=all 

    This should return both the value and display value of the field and our reasoning engine should show the actual value

    2 replies

    Kevin Mok
    Kevin MokAnswer
    Community Manager
    August 4, 2026

    Hey ​@yguo03 - could you try updating your http action and add the query param sysparm_display_value=all 

    This should return both the value and display value of the field and our reasoning engine should show the actual value

    yguo03Author
    New Participant
    August 5, 2026

    Thank you very much for your quick reswponse!

    Mary