cURL
curl --request POST \ --url 'https://actionkit.useparagon.com/projects/{project_id}/actions/#NETSUITE_SEARCH_PAYMENT_TERMS' \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "action": "NETSUITE_SEARCH_PAYMENT_TERMS", "parameters": { "termFilterFormula": { "operator": "OR", "conditions": [ { "operator": "AND", "conditions": [ { "field": "name", "operator": "$stringExactlyMatches", "value": "<string>" } ] } ] } } } '
Your Paragon User Token (JWT), which you can generate using your project's signing keys.
Your Paragon Project ID. You can copy your Project ID from your dashboard URL or by clicking Copy Project ID under the Environment switcher.
Show child attributes
A filter in disjunctive normal form: OR of AND groups of single conditions
Top-level operator must be OR (DNF enforced)
OR
Each item is an AND group (a conjunction of single conditions)
Each group is an AND of single conditions
AND
List of single conditions (AND together)
name
discountPercent
$stringExactlyMatches
$stringContains
$numberEquals
$numberDoesNotEqual
$stringStartsWith
$stringEndsWith
Value to compare against
Success
Was this page helpful?