Hi there,
I’m trying to use the API property of the multi select field but I keep getting the following error.
“Invalid options format”
There is no error in the console. Can you advise how I might get a more verbose error message? Currently this one is extremely vague.
This is what the entry looks like in my blueprint
genretags:
label: Genres for the mix
type: multiselect
options: api
api:
url: https://www.staging.noodsradio.com/genres.json
fetch: Genres
text: "{{ item.Name }}"
value: "{{ item.Name.slug }}"
I’ve scaled down the the url to just return a JSON object with a single item…
https://www.staging.noodsradio.com/genres.json
Any advice on this would be appreciated!