'How to send POST method with quotation marked key data?

I found out that Request Payload object's key is without quotation mark like below. enter image description here

But I want to send a request with quotation marked key object. Because bellow way didn't occur a error to me. enter image description here

I'm sending data like follow

{
   data: JSON.stringify({account: '0x555~~'})
}


Solution 1:[1]

Whatever you already did must work properly.Since it's not

Just try sending it like this

let account = '0x555....'
data.JSON.stringify({account})

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Sharan Balakrishnan