Pricing Blog

API Query Param by email contains +2 not working

  • uunicode-1330211069607678003

    unicodes

    5 months ago

    If you are using in the database an email address like this example email+2@email.com, it will not perform the select, do you know why? It works if the email is without +2.
  • lucasg-1330215467230691328

    Lucas G

    5 months ago

    You probably need to encode the +
  • lucasg-1330216079796080692

    Lucas G

    5 months ago

    In URLs '+' typically represents a space
  • So you'll likely need to replace it with '%2B'
  • email%2B2@email.com
  • uunicode-1330313540040654942

    unicodes

    5 months ago

    Thank you Lucas!