API Calls only returning saving a partial link

I have an API setup in API connector where one value that gets returned is a link. In the API connector when I test it the entire link is returned fine. But, when I call this API through the API connector in a workflow and then save the data returned only a part of the URL returned is getting saved.

For example, my URL is something like link.com/code?ID=100?user=xyz and the only part getting returned is before the first “?” (link.com/code)

Anyone else have this happen and any way to solve it?

I don’t understand what you are doing exactly, but two ? in url won’t work. This is not a standard encoding. This should be separated by & after the ?. link.com/code?ID=100&user=xyz

I figured it out, it was an issue with the way the API was setup and actually not outputting the URL properly like I expected it to.