パスパラメータ(Pathparameter),クエリパラメータ(queryparameter)
URIで送るものがパスパラメータとクエリパラメータです。
https://example.com/pathparameter/{pathparameter}?queryparameter1=hogehoge&queryparameter2=fugafuga
例を見て説明すると
URIでドメインの後、?の前に来るものがパスパラメータ。
?の後に来るのがクエリパラメータ。
リクエストボディ(requestBody)
URIではなく、JSONで送るものです。
{
hoge_name: fugafuga,
description: hogefugahoge,
}