Hi,
thank you for you answer. I was able to pass over the first problem. Now I can update the connector correctly. Selecting the first parameter works fine, however when I try to select the second It is not populated and I see "no items" instead. I know the server returns a correct answer.
Here is my swagger:
/v1/external_notifications/0/hooks/set_power_hook:
x-ms-notification-content:
title: When a card is created
description: Triggers when a card is created on the defined board
schema:
type: object
properties:
action: {type: string, description: Describes the action that triggered
the event, title: Action}
user: {type: string, title: User, description: The user who triggered the
event}
card_url: {type: string, title: Card Url, description: A link to the card
URL}
card_name: {type: string, title: Card Name, description: The name of the
card}
status: {type: string, title: Status, description: The current column the
card is placed in}
board_name: {type: string, title: Board Name, description: The name of the
Board where the card lives}
board_id: {type: integer, title: Board ID, description: The unique id of
the board.}
card_id: {type: integer, description: The unique ID of the card, title: Card
ID, format: int32}
post:
responses:
'200': {description: success}
summary: When a card is created
description: Triggers when a card is created on the defined board
operationId: set_webhook_card_create
x-ms-trigger: single
parameters:
- name: body
in: body
required: false
schema:
type: object
properties:
card_create:
type: boolean
default: true
title: When a card is created
description: Triggers when a card is created on the defined board
enum: [true, false]
x-ms-visibility: internal
webhook: {type: string, description: webhook, x-ms-visibility: internal,
title: '', x-ms-notification-url: true}
project_id:
type: string
title: Project
description: The id of the Project that the card belongs to
x-ms-dynamic-values: {operationId: get_projects, value-path: project_id,
value-collection: configs, value-title: project_name}
x-ms-visibility: important
board_id:
type: integer
format: int32
title: Board
description: The id of the Board that the card belongs to
x-ms-dynamic-values:
operationId: get_boards_by_project
value-path: id
value-title: name
parameters:
project_id: {parameter: project_id}
x-ms-dynamic-list:
operationId: get_boards_by_project
itemsPath: ''
itemValuePath: id
itemTitlePath: name
parameters:
project_id: {parameterReference: body/project_id}
x-ms-visibility: important
required: [webhook, card_create, board_id]