Re: Find List and Create Item
Hello @legendsIT ,
if the url and list name can change, you should create the item with an HTTP request. You can't use the existing SharePoint actions as they require fixed url and list name.
Site Address: the full URL to the site
Method: POST
Uri: _api/web/lists/GetByTitle('[ListName]')/Items
Headers:
Accept : application/json;odata=verbose
Content-Type : application/json;odata=verbose
Body:
{
"__metadata": {
"type": "SP.Data.[ListName]ListItem"
},
"Column1": "Value1",
"Column2": "Value2",
"Column3": "Value3"
}
