🚀

PostmanにPath parameterを渡す方法

2023/12/25に公開

https://hogehoge.com/images/{id} のような{}でkeyを囲む方法が従来だったようだけど、動かず。

正解は「:で宣言」でした。

https://hogehoge.com/images/:id
のようにparamsに設定をすると、Path Variablesが出てくるのでここで入れられるようになります。

via:
https://learning.postman.com/docs/sending-requests/requests/#:~:text=To send a path parameter,you can also edit it.

Discussion