# updateAnonymizeAfterDate - Update anonymization date for orders Updates the anonymization date for orders in the Mirakl Connect platform. Use this API to indicated after which date orders should be anonymized by Connect. The anonymization process is irreversible and should be used with caution. Call FrequencyRecommended usage: Once per order when the anonymization date is setMaximum usage: Every time the anonymization date needs to be changed Endpoint: PUT /v1/orders/anonymize-after Security: Bearer ## Request fields (application/json): - `orders` (array, required) - `orders.anonymize_after` (string, required) The date after which the order should be anonymized. The date must be in ISO 8601 format (YYYY-MM-DDTHH:mm:ssZ) and in the futur relative to time of call (note: a tolerance of few minutes will be tolerated to prevent false positive errors) - `orders.channel_id` (string, required) The ID of the channel on which the order was placed. - `orders.channel_order_id` (string, required) The ID of the order on the channel. ## Response 400 fields (application/json): - `code` (string, required) Error code (immutable) - `errors` (array) - `errors.extensions` (object) Free map where you find additional context data to better describe the error - `errors.field` (string) JsonPath to the field where the error occurred - `errors.message` (string, required) Literal string error item description (Please do not base your error handling on this field since it is subject to change) - `message` (string, required) Literal string error description (Please do not base your error handling on this field since it is subject to change)