What's the difference between "/post/<uuid>"
and "/post?<uuid>"
#2457
-
I'm running into a problem when trying to use a typed uri; if I use Terminal output from
|
Beta Was this translation helpful? Give feedback.
Answered by
robertwayne
Jan 20, 2023
Replies: 1 comment 3 replies
-
The second one is a Query Parameter - Dynamic Parameters in particular, which expect a key-value pair in the request. To fix your issue, you would need to make your request as such: |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
2-3-5-41
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The second one is a Query Parameter - Dynamic Parameters in particular, which expect a key-value pair in the request.
To fix your issue, you would need to make your request as such:
/post?uuid=your_uuid_here