As a Trello user, I'd like to see the card's name included in the webhook notification when a card is deleted

XMLWordPrintable

    • Type: Suggestion
    • Resolution: Unresolved
    • Component/s: Product - API
    • None
    • 2

      User Problem

      There are some use cases where customers prefer to create their own tools to monitor the activity of their boards, such as setting up webhook notifications. Despite being a helpful way for users to stay up-to-date on everything that happens on their boards, the webhook notification doesn't inform the card's name when a card is deleted, resulting in users not knowing which card was deleted from their boards.

      Suggested Solutions

      We should include the card's name deleted in the webhook notification, similar to what we already do when a board is deleted from Trello. 

      Here's an example of a webhook notification when a board is deleted:

        "action": {
          "id": "*********",
          "idMemberCreator": "*********",
          "data": {
            "board": {
              "id": "*********",
              "name": "Copy board",
              "shortLink": "*********"
            },
            "organization": {
              "id": "*********",
              "name": "*********"
            }
          },

      Here's another example of a webhook notification when a card is deleted:

      "action": {
          "id": "*********",
          "idMemberCreator": "*********",
          "data": {
            "card": {
              "id": "*********",
              "idShort": 6,
              "shortLink": "*********"
            },
            "list": {
              "id": "*********",
              "name": "To Do",
              "color": "red"
            },
            "board": {
              "id": "*********",
              "name": "Copy board",
              "shortLink": "*********"
            }
          },

      Current Workarounds

      None available

            Assignee:
            Unassigned
            Reporter:
            Sal (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated: