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