Discussions
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.
Posted by pb 12 days ago
Pin any Discussion to the Top
Is it possible to pin any of these discussions to the top?
Posted by null 12 days ago
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.
Posted by Pavani Boga 13 days ago
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. ?
Posted by Sachin Arora 14 days ago
where can I find my readMe secret for custom webhooks
where can I find my readMe secret for custom webhooks
Posted by Pavani Boga 14 days ago
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?
Posted by Stefan Eklund 18 days ago
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?
Posted by Richard David 19 days ago
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?
Posted by Gwendal 20 days ago
Can you use a custom domain for API docs with free or startup plans?
Like the title says! I'm curious if you can use a custom domain when you aren't on the enterprise plan. Thanks!
Posted by Andrea A 22 days ago
Remove a discussion thread
Is it possible to remove a discussion thread from the Discussions page?
Thank you :)
Posted by Alex 25 days ago