Store
Update a Memory Store
Partially update a Memory Store. Only the fields provided in the request body will be updated.
patch/v1/ControlPlane/Stores/{storeId}
Headers
If-Matchstring
Example:"eyJpZCI6ImFuX2lkIiwidiI6MX0"
Allows for optimistic concurrency control by making the request conditional. Server will only act if the resource's current Entity Tag (ETag) matches the one provided, preventing accidental overwrites.
Request body
Example request
{
"displayName": "sandbox-updated",
"description": "Updated service for development and testing"
}Response
Memory Store update request accepted.
Example response
{
"message": "Memory Store update request accepted for processing."
}