Content
You are here:
#api How to filter with "_links" properties params on API.v3
Added by Thanh Nguyen over 4 years ago
Hi!
I just learned to use "hypermedia rest api" on openproject
I want use "filter" param with "_links" properties on api but not know how
Example:
http:/<my_domain>/target/api/v3/projects/design/work_packages?filters=[{"updatedAt":{"operator":"<>d","values":["2017-06-10T22:00:00Z","2017-07-05T22:00:00Z"]}, "_links":{"type":{"title":{"operator":"=","values":["Box"]}}}]
==> My Question:
- i not known use to
"_links":{"type":{"title":{"operator":"=","values":["Box"]}
params filter. Now, result is not filter for "_links" - And show me books name to learn API for to beginner
Help me, please!
Thanks!
Replies (3)
Solved!
https://stackoverflow.com/questions/62844700/how-to-filter-with-links-properties-params-on-api-v3-in-openproject
To properly filter by "_links" in a hypermedia API, you'll need to refer to the API documentation provided by OpenProject. Typically, hypermedia APIs like HAL (Hypertext Application Language) will have specific ways of navigating and filtering based on the links available.
Regarding your question about learning b2b API integration for beginners, the link you provided (https://www.oreilly.com/library/view/restful-web-clients/9781491921890/ch04.html#callout_hal_clients_CO1-1) seems to be from the book "RESTful Web Clients" by Mike Amundsen. This book is a good resource for understanding RESTful principles, and it covers topics like hypermedia and HAL.