We are switching from Zapier to Power Automate. I am trying to use Call GraphQL feature and have run into an issue. I’m fairly new at JSON, so forgive me if this is a simple thing.
The flow is failing with this error:
“The provided input content is not valid: ‘The provided content-type header value ‘application%2Fjson’ is not well formed.’.”
This is the query I’m using.
{
boards(ids: 2346905490) {
items(ids: @{triggerOutputs()?[‘body/itemId’]}) {
assets {
public_url
name
}
}
}
}
I appreciate your assitance with this issue.