Discussions

Ask a Question
ANSWERED

How to remove "Did this page help you?"?

Is there a way to remove "Did this page help you?"?
ANSWERED

Page with large table doesn't load

I have an appendix in my guide, which is one very long table. It is definitely published and it appears in the TOC on the side. But when I try to open it from another page in my project, the icon on the browser tab spins as if it's thinking, but then even though the URL changes to the correct URL, I still see the same page I was on before. If I try to open the page directly from the URL (not from another page in my project), I get a 500 Internal Server Error. Why is this happening and how can I fix it? Thanks.
ANSWERED

Can the API/CLI tool update recipe code?

We would like to keep our example code for recipes in a repo where it will be tested as our code base changes. It would be great to be able to update it programmatically with the API or CLI tool. However, it looks like they don't support updating that part of the site.
ANSWERED

How can I decrease the padding from the right and left sides of the ReadMe portal?

Hi Team, I have a feedback from few of my team members, to decrease the padding from the right and left sides of the ReadMe portal. ReadMe portal is not utilizing complete space available in the browser and there is blank space before the left TOC and after the right TOC. What can be done to change the view similar to https://docs.readme.com/docs page? Thanks in advance!
ANSWERED

Add Reference API in my application

Good morning dear, a query you might be able to embed an api reference in my app outside of Readme.
ANSWERED

How can I link an image on a custom page

On a custom page, it's possible to add an image using the dashboard. However, I can't find a way to add a link to that image. As a sidenote; is it also possible to add a video?
ANSWERED

Filtering "Contacts - Custom Fields Values"

Hi everyone! I'm trying to use API of Active Campaign to get all the "Contacts - Custom Fields Values" but regarding that, the only way to filter for now is by "fieldedid" or "value" of the custom fields, it's impossible for me to do it. Do you know whether there is a way like in"Contacts" to filter by creation or update date? Kind Regards, Daniel
ANSWERED

Testing XML endpoints using API Explorer

Live testing of API endpoints using the API Explorer(API Reference Page) basically supports RESTful endpoints, is there a way to test XML endpoints? Thanks

allOf inheritance

Hi, it seems like when returning an array, and the associated schema is inherited with `allOf` the object is not properly displayed when you click on the "Response" to see how it looks. Strangely, it works with non array. example below: responses: 200: description: OK - List of advertiser objects content: application/json: schema: type: array items: $ref: '#/components/schemas/advertiser' advertiser: allOf: # Combines the basicAdvertiser and the advertiser model - $ref: '#/components/schemas/basicAdvertiser' - type: object