Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hey, the <https://clear.ml/docs/latest/docs/references/api/#request-format|api reference> says that the url should be ```https://&lt;base_url&gt;/auth.login``` but to make it actually work I have to do ```https://&lt;base_url&gt;/api/v1.0/auth.login``` Th

Hey, the api reference says that the url should be

https://<base_url>/auth.login

but to make it actually work I have to do

https://<base_url>/api/v1.0/auth.login

This does not seem to be documented anywhere. Is this a thing I would have understood if I did web programming or is the documentation not updated?

  
  
Posted 11 days ago
Votes Newest

Answers 6


Hi @<1562973083189383168:profile|GrievingDuck15>
Thanks for noticing, yes the api is always versioned, we should make it clear in the docs. Also if you need the latest one use version 999 , it will default to the latest one it can support

  
  
Posted 10 days ago

So I tested using the version that I can see in the request going to the server, but the api returns "Requested version: 2.28, Used version 1.0" for some reason. I'm not sure if the message is wrong or it actually used 1.0.

  
  
Posted 9 days ago

Requested version: 2.28, Used version 1.0" for some reason

This is fine that means there is no change in that API

  
  
Posted 8 days ago

Weird . I recently implemented a function that talked to this exact endpoint and found it had to exclude the version and api paths . Is there some sort of redirect that happens?

  
  
Posted 7 days ago

Hi @<1593051292383580160:profile|SoreSparrow36> , it's not a redirect, it's simply the server using the latest version if you did not specify a version.

  
  
Posted 7 days ago

Regarding the original message, base_url refers to the API endpoint (in a self-served server, this would usually be with port 8008). The fact you had to use /api simply means you were using the WebApp endpoint which has its own apo reverse proxy, which should not really be used by external clients (it's possible, but there's no guarantee for backwards compatibility there as it's designed to be used by the WebApp and might change in the future)

  
  
Posted 7 days ago
68 Views
6 Answers
11 days ago
7 days ago
Tags