更新时间:2022-08-15 GMT+08:00
查询微服务访问契约
功能介绍
根据指定的serviceId和schemaId查询微服务的schema信息。
URI
GET /v4/{project_id}/registry/microservices/{serviceId}/schemas/{schemaId}
参数 |
类型 |
必选 |
说明 |
---|---|---|---|
project_id |
String |
是 |
请填固定值:default。 |
serviceId |
String |
是 |
微服务唯一标识。 字符长度为1~64。 正则表达式为^.*$ |
schemaId |
String |
是 |
schema的id。 |
请求消息
无
示例
请求示例
GET /v4/default/registry/microservices/e0f0da073f2c91e8979a89ff2d7c69t6/schemas/com.test.TestService
响应示例
{"schema": "---\nswagger: \"2.0\"\ninfo:\n version: \"1.0.0\"\n title: \"swagger definition for com.service.provider.controller.ProviderImpl\"\n x-java-interface: \"cse.gen.springmvc.provider.provider.ProviderImplIntf\"\nbasePath: \"/provider\"\nconsumes:\n- \"application/json\"\nproduces:\n- \"application/json\"\npaths:\n /helloworld:\n get:\n operationId: \"helloworld\"\n produces:\n - \"application/json\"\n parameters:\n - name: \"name\"\n in: \"query\"\n required: true\n type: \"string\"\n responses:\n 200:\n description: \"response of 200\"\n schema:\n type: \"string\"\n"}
状态码
状态码请参见状态码。
错误码
错误码请参见CSE错误码。
父主题: CSE API