Currently Openzaak APIs don't support trailing slashes. Objects API and Objecttypes API are consistent with them (and use the same routers)
Trailing slashes are conventional in Django and are a default option for routers.
The easiest solution is to turn back trailing slashes in the routers. With the default setting APPEND_SLASH=true the endpoints with and without trailing slashes will be supported. The only change would be adding slashes in the API spec.
@joeribekker Let's discuss it.
The easiest solution is to turn back trailing slashes in the routers. With the default setting
APPEND_SLASH=true
the endpoints with and without trailing slashes will be supported. The only change would be adding slashes in the API spec.