Hi,
I have a SP List which has over 4000 items. I found Paul's method of using flow to collect data very useful.
https://www.tachytelic.net/2020/04/many-ways-get-sharepoint-items-power-automate/
His method works very well, however I am having difficulties understanding how to use complex fields which I have in my list. It works for string and integer fields, straight forward but for people picker, choice and lookup I have no idea.
Below in the uri I have so far entered only string and integer, but please can someone help me with the rest.
Thank you,
Mo

These are all my fields I need:

--> Also, does anyone know how to generate JSON schema? I need it for the final part of this flow:
{
"type": "array",
"items": {
"type": "object",
"properties": {
"Id": {
"type": "integer"
},
"Title": {
"type": "string"
},
"LessonNo": {
"type": "integer"
},
"EventStart": {
"type": "string"
},
"EventEnd": {
"type": "string"
},
"CourseTeacher": {
"type": "string"
},
"TeacherName": {
"type": "string"
},
"Description": {
"type": "string"
},
"Location": {
"type": "string"
}
},
"required": [
"Id",
"Title",
"LessonNo",
"EventStart",
"EventEnd",
"CourseTeacher",
"TeacherName",
"Description",
"Location"
]
}
}