Alright so I have a small update. I can add objects individually but not multiple in the json format If I send this it works { "name": "ps_api_test", "type": "ipv4Cidr", "category" : "network", "cidr": "10.1.1.1/24", "groupIds": [] } But If I try to add a second one say; { "name": "ps_api_test_2", "type": "ipv4Cidr", "category" : "network", "cidr": "10.2.2.1/24", "groupIds": [] }, { "name": "ps_api_test_3", "type": "ipv4Cidr", "category" : "network", "cidr": "10.3.3.1/24", "groupIds": [] } Then I get a JSON format error (to be expected), when I add the [] at the beginning and end I get the same error I was getting before. Any Ideas?
... View more