v32

latestOpenAPI 3.1.0raw.githubusercontent.com2026-05-151,1412,2144.5 MB
Edge Storage

Update an edge store

Modify edge store configuration including name, description, and application associations. Store type cannot be changed after creation.

put/fastedge/v1/kv/{store_id}

Path parameters

store_idinteger required

Id of the store

Request body

namestring required

A name of the store

commentstring

A description of the store

app_countinteger

The number of applications that use this store

sizeinteger

Total store size in bytes (zero for BYOD stores)

revisioninteger

Current store revision (only for non-BYOD stores)

updated_atstring date-time

Timestamp of last store revision (only for non-BYOD stores)

Example request

{
  "byod": {
    "url": "redis://redis.example.com:6379/0",
    "prefix": "app:prod:"
  }
}

Response

Edge store updated successfully, returns updated configuration

namestring required

A name of the store

commentstring

A description of the store

app_countinteger

The number of applications that use this store

sizeinteger

Total store size in bytes (zero for BYOD stores)

revisioninteger

Current store revision (only for non-BYOD stores)

updated_atstring date-time

Timestamp of last store revision (only for non-BYOD stores)

Example response

{
  "byod": {
    "url": "redis://redis.example.com:6379/0",
    "prefix": "app:prod:"
  }
}