Multiple Parameters

Multiple Parameters

in API Development

Posted by: Ice of Dragons.1637

Ice of Dragons.1637

I want to filter the API true multiple parameters. In the event api i want to use the world id and the event id. Is it possible to use booth ? this is my event id https://api.guildwars2.com/v1/events.json?event_id=03BF176A-D59F-49CA-A311-39FC6F533F2F
i would like to filter it true the api and not post parsing. tried

https://api.guildwars2.com/v1/events.json?world_id=2102?event_id=03BF176A-D59F-49CA-A311-39FC6F533F2F but it did not work.

Hthnx for help

Multiple Parameters

in API Development

Posted by: Dr Ishmael.9685

Dr Ishmael.9685

https://api.guildwars2.com/v1/events.json?world_id=2102&event_id=03BF176A-D59F-49CA-A311-39FC6F533F2F

You’re welcome. (Hint: ‘?’ begins the parameter string, then you have to use ‘&’ between parameters.)

Edit: except the forum escapes the ‘&’ in that url. You’ll have to copy/paste to make it work.

Multiple Parameters

in API Development

Posted by: Ice of Dragons.1637

Ice of Dragons.1637

thank you helps a lot