Describe one Homey flow card
homey_flowcard_describeGet a flow card's full schema before building a flow: argument names, types, allowed values, required flags, emitted values, drop support, and deprecation status. Avoid invalid args that break automations.
Instructions
Returns everything needed to use one flow card: every argument with its type and allowed values, the values the card emits for later cards to read, whether it accepts a dropped value, and whether it is deprecated. The arguments come back under arguments, the same field homey_flowcards_search reports with only the name and type of each; here every entry additionally carries its title, whether it is required, its allowed values and range, and how to resolve it. The values you then set on the card are sent as args, keyed by those argument names. arguments is the schema, args is what you fill in. Call this for each card before building a flow. Guessing an argument name produces a flow that saves and then does nothing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| kind | No | Which meaning of the card id you want, when one id names cards of more than one kind. Omit to be told about all of them. | |
| cardId | Yes | The full card id from homey_flowcards_search, for example homey:manager:notifications:create_notification. |