i have an flow where i get a json collection from, power apps. First i initialize the json as a sting named vJSONCollection.
Next step i analyze the vJSONCollection and use this schema:
{
"type": "object",
"properties": {
"Adresse": {
"type": "string"
},
"Arbeiten": {
"type": "string"
},
"Auftrag": {
"type": "string"
},
"Auftraggeber": {
"type": "string"
},
"CheckboxInst": {
"type": "string"
},
"CheckboxNoError": {
"type": "string"
},
"CheckboxRep": {
"type": "string"
},
"Datum": {
"type": "string"
},
"FahrtAnkunft": {
"type": "string"
},
"FahrtBeginn": {
"type": "string"
},
"Filiale": {
"type": "integer"
},
"Kilometer": {
"type": "string"
},
"KundeBeginn": {
"type": "string"
},
"KundeEnde": {
"type": "string"
},
"KundenName": {
"type": "string"
},
"LogoKunde": {
"type": "string"
},
"Ort": {
"type": "string"
},
"PLZ": {
"type": "string"
},
"TaskNummer": {
"type": "string"
},
"Techniker": {
"type": "string"
},
"Toggle": {
"type": "boolean"
},
"VorlageKunde": {
"type": "string"
},
"WartenBeginn": {
"type": "string"
},
"WartenEnde": {
"type": "string"
}
}
}
No i think i have an array.
In the next stepp i use the action "Get File Content" and here i get my error.
{
"status": 400,
"message": "The file id '/PowerApps/Vorlagen/advanced.html' is not valid.",
"source": "api.connectorp.svc.ms"
}
I use as file name this: /PowerApps/VorlagenXXX.html
The issue is, you are using the Path, in Get File Content, it wants the File Id, NOt the path.
You want to use
Get file content using path action instead
If these suggestions help resolve your issue, Please consider Marking the answer as such and also maybe a like.
Thank you!
Sincerely, Michael Gernaey
1 people found this reply helpful.
Was this reply helpful?YesNo
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.