Discussions

Ask a Question
ANSWERED

Can I add flag emojis on the title of any post on the Guides?

Hi I just wanted to know if there is a way to add a flag emoji on the title of any post on the Guides? Thank you

I removed api reference by mistake.

I accidentally deleted 2 categories from api reference with content. Is there any way to recover this?

how to pre-popluate api fields from JSON data ?

can I pre-populate the api fields from the JSON data returned by webhooks ? if yes can you provide the docs for the same. thank.
ANSWERED

Can I use custom variables from my Personalised-Docs to pre popuaate fields in my api-definitions ?

I have custom variables that are configured in personalised docs and I want to use these variables as default values( pre-poulate the fileds) in my api's.
ANSWERED

Error coming for few specs for version mismatch

What is this error - The version you specified (1.0.7) doesn't match any of the existing versions (1.0) in ReadMe. ?
ANSWERED

where can I find my readMe secret for custom webhooks

where can I find my readMe secret for custom webhooks

Let your customers register on readme

Hi fellow API developers We just recently started to document all our API stuff on readme, and I wonder if there is a way for my clients to register as a developer on my readme portal? As I would like to have a way of reaching out to them with news, updates etc. Is this possible in readme?

Multipart/form-data properties are not generated correctly

I have an endpoint that consumes a `multipart/form-data` It takes a file and other properties. some of the properties are objects. Below is how Readme renders the properties ``` const sdk = require('api')('@fr0sty/v1.0#3y00k1blog8la60'); sdk.uploadKnowledgeDocument({ newKey: 'New Value', appVisibility: 'visible', name: 'Product Release Monthly Webinar - May 2023', file: 'starbucks%20brand%20voice.pdf' }) .then(({ data }) => console.log(data)) .catch(err => console.error(err)); ``` `newKey` should be inside an object with a key of `metadata` and `appVisibility` should inside an object with key `settings` Below is how it should look. ``` const sdk = require('api')('@fr0sty/v1.0#3y00k1blog8la60'); sdk.uploadKnowledgeDocument({ metadata: { newKey: 'New Value'}, settings: {appVisibility: 'visible'}, name: 'Product Release Monthly Webinar - May 2023', file: 'starbucks%20brand%20voice.pdf' }) .then(({ data }) => console.log(data)) .catch(err => console.error(err)); ``` Stoplight & Swagger-UI produce the above result. Why does `Readme` not include the `metadata` & `settings` key in the object?

Synchronization with Symfony

I assume that it's not currently possible to sync a Readme with a Symfony app except with GitHub Actions. It would be great to use API plateform features to automatically sync data and generate Readme content. I haven't found anything in discussions about this, is something like this possible and planned in the future?