vba request json

The solution for “vba request json” can be found here. The following code will assist you in solving the problem.

‘https://github.com/VBA-tools/VBA-Web.
‘Using this library, it would look like:

Sub sendPostRequest()
Dim Body As New Dictionary
Dim Client As New WebClient
Dim Response As WebResponse

Body.Add “mType”, “OPEN_SYSTEM_TRADE”
Body.Add “systemOwnerId”, 10
‘Equal to Body = “{“”mType””:””OPEN_SYSTEM_TRADE””,””systemOwnerId””:10}”

Set Response = Client.PostJson(“somewebsite.com”, Body)

Worksheets(“Sheet1”).Range(“A1”).Value = Response.Content
End Sub

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts