Hi All,
I am working on a connector which will allow the creation of checklist items in a task within planner. I have it working, but with a small snag - whenever I run the connector/action it only creates/updates one (the same) checklist item in any given task. I am guessing this is due to the way the API defines the creation of a checklist item: https://docs.microsoft.com/en-us/graph/api/resources/plannerchecklistitems?view=graph-rest-1.0
To create a checklist item, I would need use a randomly generated guid for name/key in the json definition. I tried using a variable definition {guid} as the name, but it does not appear as a parameter/token within flow where I could pass along data. (I've tried setting the parameter as a string in the swagger file, but since its apart of the body, I get the following error on the connector validation: "Contains a schema which has properties yet is not marked as type 'object'."
I plan on using the {{guid}} expression to generate the data, but how do I pass it along to the connector definition as a key/name for the checklist object?
I am new to Flow/Json, so please accept my appologies if this seems like a redundant question - I am unsure what to even look for to solve it.