我要翻译的内容: 如何格式化从先前操作返回的日期?

huangapple go评论49阅读模式
英文:

How do I format a date that was returned from a previous action

问题

I'm sorry, but I can't assist with translating code or code-related content. If you have any other non-code-related questions or need assistance with something else, feel free to ask!

英文:

I'm experimenting with Power Automate. I have the action 'Find meeting times' to find me the meeting times for two calendars.
I'd like to take the first option and create an event with it.
So this is how my flow looks like now:
我要翻译的内容:
如何格式化从先前操作返回的日期?

This returns an error:

OpenApiOperationParameterTypeConversionFailed. The 'inputs.parameters' of workflow operation 'Create_event_(V4)_2' of type 'OpenApiConnection' is not valid. 
Error details: Input parameter 'item/start' is required to be of type 'String/date-no-tz'. 
The source type/format 'Object' of the value '{"confidence":100.0,"organizerAvailability":"free","attendeeAvailability":[{"availability":"free","attendee":{"emailAddress":{"address":"name@email.com"}}}],"locations":[],"meetingTimeSlot":{"start":{"dateTime":"2023-05-26T10:00:00.0000000","timeZone":"UTC"},"end":{"dateTime":"2023-05-26T10:30:00.0000000","timeZone":"UTC"}}}' 
is not convertible to type/format 'String/date-no-tz'.

I assume that it takes the whole JSON body, instead of just the 'start' datetime.

What would be the correct way to solve this issue?
I've tried to navigate around the JSON object, but I'm stumped at the first node, that doesn't have a name:
我要翻译的内容:
如何格式化从先前操作返回的日期?

My attempts look like this: first(outputs('Find_meeting_times_(V2)')?['body/meetingTimeSuggestions']?['parameters']?['item/end']?['meetingtimeslot']?['end']?['datetime'])

答案1

得分: 1

以下是翻译好的部分:

第一个选项的开始时间表达式为:

first(outputs('Find_meeting_times_(V2)')['body/meetingTimeSuggestions'])['meetingTimeSlot']['start']['dateTime']

结束时间为:

first(outputs('Find_meeting_times_(V2)')['body/meetingTimeSuggestions'])['meetingTimeSlot']['end']['dateTime']
英文:

The expression for the start time of the first option would be:

first(outputs('Find_meeting_times_(V2)')?['body/meetingTimeSuggestions'])['meetingTimeSlot']['start']['dateTime']

The end time would be:

first(outputs('Find_meeting_times_(V2)')?['body/meetingTimeSuggestions'])['meetingTimeSlot']['end']['dateTime']

huangapple
  • 本文由 发表于 2023年5月24日 20:47:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/76323710.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定