I'm not having much luck trying to use resourceful documentation for an API URI which uses Rails' array parameter notation
For example (the unencoded URL for clarity):
/api/v2/profiles?ids[]=35&ids[]=47&ids[]=12&ids[]=132
and the actual encoded URL:
/api/v2/profiles?ids%5b%5d=35&ids%5b%5d=47&ids%5b%5d=12&ids%5b%5d=132
This does not work:
## Profiles [/api/v2/profiles{?ids%5b%5d*}]
### List profiles [GET]
+ Parameters
+ ids%5b%5d (required, number) ... ID of a profile to fetch. May be specified multiple times.
Testing this against the beta 3 column layout. Have not tried it with the old layout.