add breadcrumbs
This commit is contained in:
@@ -11,6 +11,37 @@
|
||||
"application/json"
|
||||
],
|
||||
"paths": {
|
||||
"/breadcrumbs/{id}": {
|
||||
"get": {
|
||||
"operationId": "CRM_GetBreadcrumbs",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "A successful response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/crmBreadcrumbsRsp"
|
||||
}
|
||||
},
|
||||
"default": {
|
||||
"description": "An unexpected error response.",
|
||||
"schema": {
|
||||
"$ref": "#/definitions/runtimeError"
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"name": "id",
|
||||
"in": "path",
|
||||
"required": true,
|
||||
"type": "string",
|
||||
"format": "int64"
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"CRM"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/catalog": {
|
||||
"get": {
|
||||
"operationId": "CRM_GetCatalog",
|
||||
@@ -97,6 +128,17 @@
|
||||
}
|
||||
},
|
||||
"definitions": {
|
||||
"crmBreadcrumbsRsp": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"categories": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/definitions/crmCategory"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"crmCatalogRsp": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
|
||||
Reference in New Issue
Block a user