🖍️
Dataloy VMS API Documentation
(Old) Dataloy VMS API Documentation
(Old) Dataloy VMS API Documentation
  • Dataloy VMS API
  • Dataloy Rest API
    • What is it?
    • Authentication / Authorization
    • Getting Started
    • Data Model
    • Filtering
    • Sorting
    • Pagination
    • Adjust Number of Fields to be Returned from a Request
    • Webhooks
      • Webhook example
      • Expressions Made Easy
      • Webhooks - New functionalities
    • Master data Objects
    • Attachments
    • Audit Log
  • User Guides
    • Accounting Integration API
      • Invoicing
      • Payments/Receipts
      • Voyages
      • Business Partners
      • Exchange Rates
      • Bunker Transactions
      • Actuals
      • Autopost Invoices
      • Accruals
    • Schedule API
    • Bunker Order Integration API
    • Service Order Integration API
    • Vessel Report
      • Release 8.0
      • Release 7.3 - 7.12
      • Release 7.0 - 7.2
      • Release 6.29 - 6.46
      • Legacy version (6.26 - 6.28)
      • Vessel report master data
    • Bunker Consumption API
    • Left join in API queries
    • Enterprise functionalities
      • Versioning
      • Endpoint access control
      • Data access control via target object
      • Data access control via target object and security role
      • Data access control at object level
      • Fields access control
      • Alert Scripts
      • Websockets
      • Bulk Deletion
      • Copy objects
      • OR and AND operators in API queries
      • Sub queries
      • XML Transformation
      • Expressions
      • Bulk Update
Powered by GitBook
On this page

Was this helpful?

Export as PDF
  1. Dataloy Rest API

Sorting

PreviousFilteringNextPagination

Last updated 1 year ago

Was this helpful?

It is possible sort the result of any search. The following type of sorting are supported:

  • ASCENDING (ascending order, case - or database sensitive)

  • ASCENDING INSENSITIVE (ascending order, case-insensitive)

  • DESCENDING (descending order, case - or database - sensitive)

  • DESCENDING INSENSITIVE (descending order, case-insensitive)

ASCENDING

ASCENDING INSENSITIVE

DESCENDING

DESCENDING INSENSITIVE

)

It is possible use sorting in combination with any filter and pagination:

http://localhost:8080/ws/rest/Vessel?sort=vesselName(AS)
http://localhost:8080/ws/rest/Vessel?sort=vesselName(ASI)
http://localhost:8080/ws/rest/Vessel?sort=vesselName(DS)
http://localhost:8080/ws/rest/Vessel?sort=vesselName(DSI
http://localhost:8080/ws/rest/Vessel?sort=vesselName(DSI)&filter=flag.countryCode(EQ)HK&pageNumber=4&limit=10