Recipient IG User ID and node

i,m new in ai automation i don,t know how to find Recipient IG User ID and what type of element i have to put on node option ?

please anyone help me for the issue ?

Describe the problem/error/question

What is the error message (if any)?

Please share your workflow

(Select the nodes on your canvas and use the keyboard shortcuts CMD+C/CTRL+C and CMD+V/CTRL+V to copy and paste the workflow.)

Share the output returned by the last node

Information on your n8n setup

  • n8n version:
  • Database (default: SQLite):
  • n8n EXECUTIONS_PROCESS setting (default: own, main):
  • Running n8n via (Docker, npm, n8n cloud, desktop app):
  • Operating system:

@ITZ_RIDWEN the Recipient IG User ID isnt something you look up or type by hand, its the senders Instagram-scoped id (IGSID) that arrives automatically when someone DMs you, it comes in the incoming message webhook as sender.id. instagram only lets you message people whove messaged your account first and you reply within 24h, so the flow is their DM hits your trigger, you pull sender.id off it, and feed that into the send nodes recipient field. whats your setup, are you receiving the DMs through an Instagram trigger/webhook, or trying to send a message cold without an incoming one first?

i,m trying to outreach for my digital marketing agency

Hi @ITZ_RIDWEN

Perhaps you can try this

After pasting the JSON, you must do these things for it to work:

  1. Connect your Credentials:
    • Click on the Instagram Reply node.
    • In the “Credential for Instagram Graph API” dropdown, select your connected Instagram account (or create a new one).
  2. Check the Expression:
    • I have set the Recipient ID to ={{ $json.sender_id }}.
    • If your specific Instagram trigger version outputs the ID differently (e.g., inside a sender object), click the Expression tab in the Recipient ID field and drag the sender_id from the “Input” panel on the left.
  3. Publish the Workflow:
    • Click “Execute Workflow” to test it once.
    • Once it works, “Publish” it so it runs automatically in the background.