First of all I am a complete coding noob, so I may not be using the correct terminology but I will try and explain the best I can.
I am working my way through figuring out how to integrate my CRM and some marketing software through their APIs, and I am having an issue with the key/value pair system. What I’m trying to do is create a customer through POST, and when I’m looking at the API reference it tells me that the address field is an object with valid keys to describe it. ( A set of key/value pairs which describes address. Allowed keys: city , state , line_1 , line_2 , country , postal_code).
In the body I put in the keys and their associated values, but when I test run it the response shows address:null. I’ve attached a picture to hopefully better show what I’m trying to describe. I’m trying to figure out how to enter the key/values so I get a response with the address fields matched up. I have tried entering them in different orders, and that didn’t change anything.