Hi, we're facing the same issue, even after adding the segment value, we still get a 1202-SegmentValueNotFound. Adding segment value: PUT https://integration.visma.net/API/controller/api/v1/dimension/subaccount/3 { "segmentValues": [ { "operation": "Insert", "value": "PRR2412012", "description": { "value": "bla bla bla" }, "active": { "value": true } } ] } When I do GET https://integration.visma.net/API/controller/api/v1/dimension/subaccount/3 I can see it in there: ... { "segmentId": 3, "valueId": "PRR2412012", "description": "bla bla", "active": true, "timeStamp": "AAAAABKyDVs=", "lastModified": "2024-06-21T16:36:48.17" }... What I do notice is that this does not have a publicId like other Segments: { "segmentId": 3, "valueId": "PRS000099", "description": "PRS000099", "publicId": "2a068d56-9c27-453d-8798-bd99e6070f0c", "active": true, "timeStamp": "AAAAABHsjho=", "lastModified": "2024-02-14T16:02:05.653" } When I pick another Segment that is Active and has a publicId it does work.. Could that explain it? Which is weird because when I pull the segements through /v1/dimension/subaccount it is in there and active.
... View more