Hello The problem was noticed while accessing the following URL: https://integration.visma.net/API/controller/api/v1/dimension/SUBACCOUNT/3 The API returned the following error message: { "message": "VismaId: 49dda245-6508-47ea-9936-b58f6bb1e86f. Error: An error in processing of field Description value taaaa \\ daaaaaaa This field can only contain plain text." } As per the error message, it seems that the description field is rejecting certain characters, specifically backslashes, even though they are properly escaped. This behavior is unexpected and prevents the correct processing of data. When we remove the // from the description it goes through without a problem. Here is the JSON: { "dimensionId": "SUBACCOUNT", "segmentId": 3, "description": { "value": "This is to test subsccount update" }, "segmentvalues": [ { "operation": "Insert", "value": "10640", "description": { "value": "testing \\ description" }, "active": { "value": true } } ] }
... View more