curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#SHAREPOINT_GET_ITEMS_IN_A_LIST' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"action": "SHAREPOINT_GET_ITEMS_IN_A_LIST",
"parameters": {
"listId": "<string>",
"itemsFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "fields/Title",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
}
}
}
'