SharePoint
Get Items In A List
POST
/
projects
/
{project_id}
/
actions
/
#SHAREPOINT_GET_ITEMS_IN_A_LIST
Copy
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>"
}
]
}
]
}
}
}'
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Your Paragon Project ID
Body
application/json
Response
200
Success
Was this page helpful?
Copy
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>"
}
]
}
]
}
}
}'
Assistant
Responses are generated using AI and may contain mistakes.