Cannot edit interaction after modal input

Ok so here is my problem, I want to achieve something like so:
Step 1: send interaction with button
Step 2: user clicks button
Step 3: modal shows and user enters stuff
Step 4: after submit edit the original interaction

Problem is, editReply() and updateMessage() doesn't let me do that (replying to the modal works) and discord api returns with a "Unknown Webhook" error:
DiscordAPIError[10015]: Unknown Webhook
    // i cut this part off to save word count
    at async Client.<anonymous> (C:\Users\mt\Visual Studio Code\testBot\handler.js:93:17) {
  requestBody: {
    files: undefined,
    json: { content: '', embeds: [Array], components: [Array] }
  },
  rawError: { message: 'Unknown Webhook', code: 10015 },
  code: 10015,
  status: 404,
  method: 'PATCH',
  url: 'https://discord.com/api/v10/webhooks/bleh/bleh/messages/@original'
}

Is there a way to achieve step 4 as defined?
Was this page helpful?