Apiary - 如何更改 cURL 调用的格式

Apiary - Howto change the format of cURL call

在 Apiary 中,默认情况下对生产环境的 cURL 调用是:

https://example.com/v1/findBrandCat?matchstring=&interestType=

我必须按以下结构进行调用:

https://example.com/v1/findBrandCat/matchstringVALUE/interestTypeVALUE

如何制作?

API 资源的 URI 模板可以定义如下:

# GET /v1/findBrandCat/{matchstringValue}/{interestTypeValue}

+ Parameters
    + matchstringValue: (required, string)
    + interestTypeValue: (required, string)

+ Response 200 (application/json)