| id | name |
|---|---|
| 101 | A |
| 102 | B |
| 103 | C |
So I have a data frame (see above) with an id for each competition. I want to use these ids to form a string that I then can use for an API request. The request requires for the ids to be in the following form:
101%2C102%2C103
Any ideas of how I might achieve this would be very welcome.