在Apiary中,默认情况下cURL对生产的调用是:
https://example.com/v1/findBrandCat?matchstring=&interestType=
我必须在以下结构中打电话:
https://example.com/v1/findBrandCat/matchstringVALUE/interestTypeVALUE
如何制作?
答案 0 :(得分:0)
API资源的URI模板可以定义如下:
# GET /v1/findBrandCat/{matchstringValue}/{interestTypeValue}
+ Parameters
+ matchstringValue: (required, string)
+ interestTypeValue: (required, string)
+ Response 200 (application/json)