Discussions

Ask a Question
ANSWERED

How do you add an image using the new community discussions editor?

I cannot see a way to add an image to help explain my problem.... <https://v.usetapes.com/yLjdvMHiiJ>
ANSWERED

AsyncAPI support

does readme support AsyncAPI specification ?
ANSWERED

Moving a section from Refrence to the Guides

I moved a section from the Reference to the Guides, it move the section header and the first document in the section, but I now cannot find the subtopics that were attached to the first topic. Where did they go?

Rendered code is not working well when using multipart/form-data

Hello I face an issue when using multipart/form-data and object in body. Here is snapshot of current openapi 3.0 ![](https://files.readme.io/f430275-image.png) The problem is with `initials` and its content: `alignment` and` y` In documentation generated code looks like this: ![](https://files.readme.io/9957dc7-image.png) In shell generated, we can see `--form alignment=hello --form y=10` Whereas i would expect `--form initials[alignment]=hello --form initials[y]=10` When using `application/json` instead of `multipart/form-data `is works very well, so i'm assuming this is a generation code problem related to `multipart/form-data`. Within the same endpoint i'm also upload a file so i need to keep `multipart/form-data` You can see our public doc here: <https://developers.yousign.com/reference/post-signature_requests-signaturerequestid-documents> Could you help me one this one, or tell me when this will be fixed ? Thanks
ANSWERED

Enhancement request

In the try it provide a way to set global header values so that you don't have to cut and paste into every endpoint that you want to try.
ANSWERED

How can I replace some variables in code example?

Like I set a required authentication in headers, in curl code. it will show automatically. ```curl curl curl --request GET \ --url https://xxxxxxx \ --header 'api-secret: testtest' \ --header 'accept: application/json' ``` But if I want to use it in my own example, like python sdk. how can I use it. ```python api-secret=${api-secret} ```
ANSWERED

I am facing this issue "unknown error(cannot read the properties of null ('reading slug'))" while deploying OAS through github. could someone help me to resolve this issue

I am facing this issue "unknown error(cannot read the properties of null ('reading slug'))" while deploying OAS through github. could someone help me to resolve this issue. As a developer, I am working on documentation for API changes. Due to support of multiple base URL's, I upgraded to OAS 3.0 from OAS 2.0. After that I started facing this issue. If i update readme keys (API_DEFINITION_KEY & Readme key), then the build is successfull. But after deploying few more changes suddenly this issue replicating. I did validating my OAS file using swagger editor and no error in it. could you pleae reproduce this isssue on your side and provide me the solution.
ANSWERED

User Management API's

is readme application provides an user management API to perform the create, read, update, delete operation.
ANSWERED

Is there a way to define custom headers/parameters to be shared across all endpoints/paths in a given JSON?

I have a use case in hand where I have some custom headers that should be **shared across all the described endpoint paths** in a given JSON. Is it possible to define those header parameters **globally** for a particular API JSON?
ANSWERED

Must slugs be unique across both doc: and ref: domains?

If we have a Guide topic with a slug of slug-name, can we also have an API reference topic name slug-name (exactly the same)? So in linking, both (doc:slug-name) and (ref:slug-name) would exist. Or must a slug be unique across both the doc: and ref: domains? Thank you!