Can´t get json-api to work when passing arguments.
My api is working with no arguments but I can´t understand how to do it with passing arguments.
"id": "1db6e507-92e1-4683-a133-517993305779",
"status": "404",
"title": "Entity Not Found"
}
],
"jsonapi": {
"version": "1.0"
}
}
```
I run this (with singel or dubbelbrackets- same result):
http://localhost:4000/api/json/documents/syllabuses/by_type/"se"/"gy"/"courses"
and get this:
```
{
"errors": [
{
"code": "NotFound",
"detail": "No syllabus record found with country_code: "se", document_type: "courses", school_type: "gy"`","id": "1db6e507-92e1-4683-a133-517993305779",
"status": "404",
"title": "Entity Not Found"
}
],
"jsonapi": {
"version": "1.0"
}
}
```
