Discussions

Ask a Question
Back to All

Guide syncing from CLI

I am able to publish the markdown file to project based on category id i provide but that section is coming under the title of api spec file and i want it under particular tag.

For example in below snippet of api spec file, we have tag "Information Api", i want that this guide file should go under that when i publish it through cli command, but it is going under title "NRT"

How can i do that ?
Command: rdme docs README_DOCS --key=rdme_key --version="v3"

{
"openapi": "3.0.2",
"info": {
"title": "NRT",
"description": "Walmart Luminate's Near Real Time APIs provide visibility into inventory at Walmart Stores. Providing access to this data at a store level also helps suppliers to reduce out-of-stock cases and make better decisions that improve the overall sales performance of their items across Wal-Mart Stores. NRT APIs are available to all Walmart Luminate charter clients in near real-time fashion.",
"version": "1.0.0"
},
"servers": [
{
"url": "developer.api.us.stg.walmart.com/api-proxy/service/channelperformance/nrti-sandbox/v1",
"description": "Sandbox URL"
}
],
"tags": [
{
"name": "Information API",
"description": "Walmart Luminate's Near Real Time APIs provide visibility into inventory at Walmart Stores. Providing access to this data at a store level also helps suppliers to reduce out-of-stock cases and make better decisions that improve the overall sales performance of their items across Wal-Mart Stores. NRT APIs are available to all Walmart Luminate charter clients in near real-time fashion."
}
],
"paths": {
"/store/{storeNbr}/gtin/{gtinValue}/transactionHistory": {
"get": {
"summary": "Transaction History",
"description": "This API provides suppliers with the transaction history for their GTINs at our Walmart stores (such as item sales, returns, receiving, etc).",
"tags": [
"Information API"
],
"responses": {
"200": {
"description": "Users list"
}
},