-->

SMARTapi Documentation

Filter, Sorting, Top

FILTER Examples
*You can use filter in all standard GET calls. Add filtertext as querystring in to your URL.

GET specific vendorwith "No." 40000
&filtertext=No.=CONST(40000)&token={C93F8BC6-FF44-43B7-889A-C82BF26AA78B}
GET vendors in filterrange from "No." 50000 to 60000
&filtertext=No.=filter(50000..60000)&token={C93F8BC6-FF44-43B7-889A-C82BF26AA78B}
GET vendors in specific "Customer Posting Group"
&filtertext=Vendor Posting Group=CONST(DANMARK)&token={C93F8BC6-FF44-43B7-889A-C82BF26AA78B}
Combination of more filtertertexts. GET vendors from a range of "No." and in specific Vendors "Posting Group"
&filtertext=No.=filter(10000..30000),Vendors Posting Group=CONST(DANMARK)&token={C93F8BC6-FF44-43B7-889A-C82BF26AA78B}
Date filter on Posting-date
&filtertext=posting%20date=filter(2019-04-13..2019-05-05)

Sorting Examples
*You can use sorting in all standard GET calls. Add sortingtext as querystring in to your URL.

&sorting=city&order=descending

LIMIT (TOP)Examples
*You can use Limit in all standard GET calls. Add limittext as querystring in to your URL.

GET specific Top 10 vendor
&limit=10