Hi Team,
I have gone through the API documentation
https://docs.catsone.nl/api/v3/ and confirm we are using the same APIs as advised here only. Also, this is working fine and we need to add a field as a filter from Catsone side.
Search Jobs with out filter(working fine) curl --location '
https://api.catsone.nl/v3/jobs/search?query=Dealer&page=1&per_page=100' \
Search Jobs with description filter(working fine)curl --location '
https://api.catsone.nl/v3/jobs/search?page=1&per_page=100' \
--header 'authorization: Token 0xxxxx' \
--header 'Content-Type: application/json' \
--data '{"field":"description","filter":"contains","value":"Doelstelling"}'
Search Jobs with is_published filter(not working)curl --location '
https://api.catsone.nl/v3/jobs/search?page=1&per_page=100' \
--header 'authorization: Token 0xxxxxxx' \
--header 'Content-Type: application/json' \
--data '{"field":"i
s_published","filter":"contains","value":"
true"}'
Issue: Search Jobs with
is_published filter is not working because Catsone has not added this field as a filter. We need to filter our jobs on this fields and we want Catsone to add
is_published as a filter field.