Filter on custom form field value of reference record in Fusion search | Community
Skip to main content
tibormolnar
Level 4
April 7, 2025
Solved

Filter on custom form field value of reference record in Fusion search

  • April 7, 2025
  • 1 reply
  • 463 views

Hi All,

I'm trying to search for Assignments using the Custom Workfront API Call module.

Is there a way to somehow flter on the custom field value of reference record? E.g. when searching for assignments, can I filter so that only assignments are returned that belong to a task with a certain custom form field value?

I tried adding query strings like task:parameterValues:DE:FIELD=foo, task:DE:FIELD=foo, task:FIELD=foo, but all of these returned an error.

Thanks,

Tibor

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by SuryaLakhani

Hi,

 

I think you would need something like this in the filter:

DE:task:{fieldName}={value}

DE:task:{fieldname}_Mod={modType}

1 reply

SuryaLakhani
SuryaLakhaniAccepted solution
Level 4
April 7, 2025

Hi,

 

I think you would need something like this in the filter:

DE:task:{fieldName}={value}

DE:task:{fieldname}_Mod={modType}

tibormolnar
Level 4
April 7, 2025

Thank you! It works perfectly!