Quick reminder: OData 4.0 URLs are indeed case sensitive

Posted: (EET/GMT+2)

 

If you are working with the Open Data Specification, or OData for short, there's a little caveat that you might run into. I hit this today, so I wanted to post a quick reminder about this. That is, the OData 4.0 URLs are case sensitive.

This does not work:

http://localhost:12345/odata/customers

But this does:

http://localhost:12345/odata/Customers

Notice the different spelling of the entity name "Customers".

Hope this helps!