Azure Logic Apps
An Azure service that automates the access and use of data across clouds without writing code.
3,184 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using a custom connector to send a series of API requests. I need to add a header value to a GET function. I added as shown below but I don't think this is correct.
/api/stat/sites:
get:
summary: stat/sites
description: stat/sites
operationId: Stat_sites
parameters:
- name: Cookie
in: header
type: string
responses:
default:
description: default
schema: {}
@Jan de Mul Thanks for reaching out. The only way to define a cookie parameter for OpenAPI 2.0 is using parameter type header.
Sample example:
parameters:
- name: Cookie
in: header
type: string
required: true