I'm trying to use Apiary to document my API. The URL for the request has parameters that contain objects so the parameter has a square bracket. Here is an example of what the URL path looks like
/api/path-request?filters[created_by]=248766&q=test&sort[0]=name&sortDir[0]=asc&page=2&limit=10
I can't figure out how to get the URL in the documentation to show the brackets correctly. The documentation way of /api/path-request{?filters,q}
gives me ?filters=12345&q=map%20name
.
I also tried /api/path-request?filters[created_by]={filters}&q={q}
but that gives me a URL of /api/path-request?filters[created_by]=filters&q=q