Hi, we use Servicenow and the rest api within Servicenow, here is the body of a message: { "name":"billy test", "email": "billy.test@testdomain.com", "orgAccess":"read-only", "tags": [{ "tag": "[]", "access": "read-only" }] } httpStatus: 201 responseBody: "{\"id\":\"1234976994152198008\",\"name\":\"Billy Test\",\"email\":\"billy.test@testdomain.com\",\"authenticationMethod\":\"Email\",\"orgAccess\":\"read-only\",\"accountStatus\":\"unverified\",\"twoFactorAuthEnabled\":false,\"hasApiKey\":false,\"lastActive\":\"\",\"networks\":[],\"tags\":[{\"tag\":\"[]\",\"access\":\"read-only\"}]}" User Billy Test has been created successfully This works, but i have these 2 sqaure brackets in the dashboard after creation of the account, if the code looks like this: "tags": [{ "tag": "", "access": "read-only" }] i will get error 400 and the new adminwas not created
... View more