curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#QUICKBOOKS_GET_INVOICES' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "QUICKBOOKS_GET_INVOICES",
"parameters": {
"invoicesFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "Id",
"operator": "$numberLessThan",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"startPosition": 123,
"limit": 123
}
}
}'
curl --request POST \
--url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#QUICKBOOKS_GET_INVOICES' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"action": "QUICKBOOKS_GET_INVOICES",
"parameters": {
"invoicesFilterFormula": {
"operator": "OR",
"conditions": [
{
"operator": "AND",
"conditions": [
{
"field": "Id",
"operator": "$numberLessThan",
"value": "<string>"
}
]
}
]
},
"paginationParameters": {
"startPosition": 123,
"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?