Questions tagged [apiary.io]

Next generation platform for building and using REST APIs.

162 questions
0
votes
1 answer

Need to access to the Bynder API

I am trying to connect to the Bynder API using Python and the documentation https://bynder.docs.apiary.io/ but I can make it to connect to the Analytics endpoint https://bynder.docs.apiary.io/#reference/analytics because I received a 401 response I…
0
votes
0 answers

Documentation does not show nested "One of" attributes correctly

This is my api blueprint file: FORMAT: 1A # system API Example ## Clients [/clients] ### Add Client [POST] + Request + Attributes + Include (ClientDetails) + Response 200 (application/json) # Data Structures ## Client…
Juvaly
  • 252
  • 1
  • 17
0
votes
1 answer

Apiary Cloud Console - IP Whitelisting

For any apiary experts out there, apiary has this option of routing calls from the browser via apiary servers called "cloud console". Have anyone used this with an API that requires IP whitelisting? Do you know what Apiary IPs are to be whitelisted…
Satya
  • 1,037
  • 3
  • 15
  • 34
0
votes
1 answer

How can I create a nested table of contents in apiary?

It is necessary to add sub-items to the table of contents to make it easier to navigate the existing methods, but unfortunately, I cannot find the documentation where this would be described.
adg ghd
  • 33
  • 1
  • 6
0
votes
1 answer

A string in Data Structures in the Api Blueprint document

I would be very thankful if someone could tell me if I can describe a string in Data Structures, because what I'm writing (in the sample below) doesn't work as it should. "Date" and "Point" are repeated a lot of times in different responses through…
Nana
  • 1
  • 1
0
votes
1 answer

Raise Warning in Hook?

Is it possible to raise a Warning message within a hook function? I can log a message with hook.log() but would like it to be properly handled as loglevel 'warning'. hooks.log("WARNING: Something unusual has happened")
TrickiDicki
  • 143
  • 2
  • 13
0
votes
0 answers

Apiary using jwt auth

I use the following to fetch a token from an API: # fetch the token res = requests.post(url, data={"email": email, "password": password}) token_json = res.json() # now can use the api res = requests.post(authenticated_url, headers={ …
user10332687
0
votes
1 answer

Dredd Apiary contract driven test - Is there any way to access private apiary documentation blueprint format from local dredd config?

I'm running contract driven development tests using dredd. I know how to configure dredd tests to run either against a local or remote server, given a blueprint apib file. Typically, the relevant fields in my dredd config file will read…
0
votes
1 answer

Swagger on Apiary editor renders default value 0 as null

I'm using Swagger YAML file for producing interactive documentation on apiary.io. I've noticed a strange issue where if I specify a default value 0 for an integer, the interactive documentation doesn't render it at all and shows "null" as default…
fikrifirat
  • 33
  • 6
0
votes
1 answer

Define as an array

In apiary this is saying object in the light colored text. This is not an object, its an array and I defined as such. I have tried a few ways to get the text to update as you can see from the code and image, but I have not been successful. Am I…
T.J.
  • 415
  • 3
  • 17
0
votes
1 answer

Parameters not showing up in valid apiary document in api blueprint

Like the title says. It works if I change + Parameters to + Attributes but I want to do this the right way so I can try to get dredd working and added to ci.when I'm done. From all the docs this should be working
JonTroncoso
  • 791
  • 1
  • 8
  • 22
0
votes
1 answer

Can apiary.io echo back request data?

If I have an apiary.io API described like this: ### Create a User [POST] + Request (application/json; charset=utf-8) { "user_id": 1053, "username": "demo@demo.com", "email": "demo@demo.com", …
Brian McCord
  • 4,943
  • 7
  • 32
  • 44
0
votes
0 answers

apiary Auth login

I am creating a apiary documentation for my API's. My question is there a way we can declare a variable like now when i login with credentials i usually receive token so later when i call my API i usually send that token in the headers. So what i am…
user7968175
0
votes
1 answer

Oracle Apiary - securing access to Mock APIs

I am currently using Apiary to design my APIs. I am using the Mock API and accessing the mocks using the private URL’s. We have a large team that uses the mock endpoints. I want to provide additional security to access the url e.g. basic…
user1811107
  • 729
  • 3
  • 18
  • 39
0
votes
1 answer

Apiary - Howto change the format of cURL call

In Apiary, the cURL call to production by default is : https://example.com/v1/findBrandCat?matchstring=&interestType= I have to make a call in following structure: https://example.com/v1/findBrandCat/matchstringVALUE/interestTypeVALUE How to make…