Hi there,
I am using the action "Parse JSON" in my Flow and would like to sort the results by a specific key.
So, in the following example I want to sort elements by "SubscriptionName". Can anyone help me to find the correct answer and tell me where to insert by sort function into the following code?
Thx in advance
Dorothee
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Charge DateDif": {
"type": "integer"
},
"ChargeEndDate": {
"type": "string"
},
"ChargeStartDate": {
"type": "string"
},
"CustomerID": {
"type": "string"
},
"Id": {
"type": "string"
},
"IdRechnungsnummer": {
"type": "string"
},
"MailSent": {
"type": "string"
},
"Quantity": {
"type": "integer"
},
"Source.Name": {
"type": "string"
},
"SubscriptionName": {
"type": "string"
},
"VK": {
"type": "number"
},
"Auftragsnummer": {
"type": "string"
},
"CustomerName": {
"type": "string"
}
},
"required": [
"Auftragsnummer",
"Charge DateDif",
"ChargeEndDate",
"ChargeStartDate",
"CustomerID",
"CustomerName",
"Id",
"IdRechnungsnummer",
"MailSent",
"Quantity",
"Source.Name",
"SubscriptionName",
"VK"
]
}
}