Hoi,
I have a flow that creates a collection from a dataverse table for powerapps.
The response JSON body scheme is under here. The field cra27_contracttype is a lookup field so on that field no data is exported. I would be happy to export the value of the name field of the related table or even the guid that refers to the record as a string. Can this be done?
{
"type": "array",
"items": {
"type": "object",
"properties": {
"cra27_docanummer": {
"type": "integer"
},
"cra27_datumkeurverkoopmedisch": {
"type": "string"
},
"cra27_datumkeurverkoopgedrag": {
"type": "string"
},
"cra27_userkeurverkoopgedrag": {
"type": "string"
},
"cra27_userkeurverkoopmedisch": {
"type": "string"
},
"cra27_contracttype": {
"type": "string"
},
"cra27_blokkeerwebsite": {
"type": "string"
},
"cra27_laatstelocatie": {
"type": "string"
}
}
}
}