you'll need to specify the desired fields - otherwise you just get name, ID and objCode.
https://developersupport.workfront.com/page-api-explorer.html
in my example below I just grabbed all fields
Hello @Eric_D_Miller It's possible, you'll have to manually stitch together the JSON. @_Manish_Singh shared the cookbook here : https://experienceleaguecommunities.adobe.com/t5/workfront-questions/single-use-approval-process/m-p/743827/highlight/true#M67056
@KristenS_WF pls try https://fusion.adobe.com/api/v2/ or https://app.workfrontfusion.com/api/v2
There is no v5.
If you get a not logged in error - are you passing the authentication token as header?
Hi @FrankatMSC you're using a text aggregator that returns - text. Feed it into a Parse JSON module but make sure you make it a named object:
{
"some name":{{#.aggregatormodule output}}
}
Hello @SerbanNitu From your description I can't tell if you've tried getting the non-working days from the schedule?
It's a collection that gives you the date of the holiday.
From API explorer
You will need to nest 2 IF statements
IF ( Condition 1 ,
do smth if Cond1=true ,
IF ( Condition 2 ,
do smth if Cond2=true ,
do something if neither is true
)
)