curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CODA_SEARCH_DOCUMENTS' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "CODA_SEARCH_DOCUMENTS",
"parameters": {
"filterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "isOwner",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"pageToken": "<string>",
"limit": 123
}
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#CODA_SEARCH_DOCUMENTS' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "CODA_SEARCH_DOCUMENTS",
"parameters": {
"filterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "isOwner",
"operator": "$stringExactlyMatches",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"pageToken": "<string>",
"limit": 123
}
}
}'
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Your Paragon Project ID
Success
Was this page helpful?