My app is trying to account for purchaseReceipt release operation sometimes failing. I have a case where I get a 200 both in the background webhook, and when checking the stateLocation, however the receipt status is still balanced. Is this working as intended? Original request: POST https://integration.visma.net/API/controller/api/v1/PurchaseReceipt/000451/action/release response body: { "id": "8b6bad6c-11d7-46ed-b79f-17fc63260765", "stateLocation": "https://integration.visma.net/API/controller/api/v1/background/8b6bad6c-11d7-46ed-b79f-17fc63260765" } received webhook: { "id": "8b6bad6c-11d7-46ed-b79f-17fc63260765", "statusCode": 200, "stateLocation": "https://integration.visma.net/API/controller/api/v1/background/8b6bad6c-11d7-46ed-b79f-17fc63260765", "contentLocation": "https://integration.visma.net/API/controller/api/v1/background/8b6bad6c-11d7-46ed-b79f-17fc63260765/content" } stateLocation call: GET https://integration.visma.net/API/controller/api/v1/background/8b6bad6c-11d7-46ed-b79f-17fc63260765 response body: { "id": "8b6bad6c-11d7-46ed-b79f-17fc63260765", "status": "Finished", "statusCode": 200, "receivedUtc": "2022-11-14T11:30:11.726+01:00", "startedUtc": "2022-11-14T11:30:11.773+01:00", "finishedUtc": "2022-11-14T11:30:13.379+01:00", "webhookAddress": "*sanitized*", "originalUri": "https://finance.visma.net/**********/api/v1/PurchaseReceipt/000451/action/release", "hasResponseContent": true, "hasRequestContent": false, "contentLocation": "https://integration.visma.net/API/controller/api/v1/background/8b6bad6c-11d7-46ed-b79f-17fc63260765/content" } receipt 000451 is still Balanced.
... View more