Move To Binary Node doesn't return Values

Hi Team,

Hope you are doing well.

I have this workflow where i have the the body content extracted from html using node extract html. I want to make a file (binary data) based on this content using the node Move to Binary.
The point is i’m not getting the data returned.

.

My source key

And when set convert all data option it returns data but throws errors in Thehive node

TheHive Node

Can you please help getting this point sorted?

Thanks in advance

Set the File Name in the Move Binary Data. Check the image below:

Thanks @RicardoE105.
It works.

The problem now is that TheHive node is not recognizing the binary data.

Why do you have an expression in the binary property? Can you share the expression?

I don’t have an expression.
Can you advise?

When the input is purple it means it’s set to evaluate an expression. However, that is not the issue as the value it’s a hardcoded rather than an expression.

Let’s try to isolate the issue. If you try the workflow below, does it work for you? (Note: Add your ids and credentials)

{
  "nodes": [
    {
      "parameters": {},
      "name": "Start",
      "type": "n8n-nodes-base.start",
      "typeVersion": 1,
      "position": [
        250,
        300
      ]
    },
    {
      "parameters": {
        "resource": "observable",
        "operation": "create",
        "caseId": "4120",
        "dataType": "file",
        "message": "aaa",
        "startDate": "2021-04-20T12:02:42.000Z",
        "status": "Ok",
        "options": {}
      },
      "name": "TheHive",
      "type": "n8n-nodes-base.theHive",
      "typeVersion": 1,
      "position": [
        870,
        300
      ],
      "credentials": {
        "theHiveApi": "TheHiveProject (Docker - V3)"
      }
    },
    {
      "parameters": {
        "mode": "jsonToBinary",
        "options": {
          "fileName": "data.json"
        }
      },
      "name": "Move Binary Data",
      "type": "n8n-nodes-base.moveBinaryData",
      "typeVersion": 1,
      "position": [
        670,
        300
      ]
    },
    {
      "parameters": {},
      "name": "Function",
      "type": "n8n-nodes-base.function",
      "typeVersion": 1,
      "position": [
        450,
        300
      ],
      "notesInFlow": true,
      "notes": "Mockup data"
    }
  ],
  "connections": {
    "Start": {
      "main": [
        [
          {
            "node": "Function",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Move Binary Data": {
      "main": [
        [
          {
            "node": "TheHive",
            "type": "main",
            "index": 0
          }
        ]
      ]
    },
    "Function": {
      "main": [
        [
          {
            "node": "Move Binary Data",
            "type": "main",
            "index": 0
          }
        ]
      ]
    }
  }
}

I think i got this.

.

To get this sorted i used the merge node. I think the data was lost.

Now I’m trying to figure out how to handle these hashes generated in json file.