URI encoding
Don't forget to URI-encode string parameters in URLs.
For example, the reporting call /reports/events/{eventKey}/byCategoryLabel/{label}
takes a label
parameter. When this parameter contains reserved ASCII characters such as '/' and ':', or non ASCII characters such as 'ã', you must apply percent-encoding.
E.g. Balcão Nobre
becomes Balc%C3%A3o%20Nobre
.
Note that our server-side SDKs do this under the hood, so you don't have to encode anything when using them.