Skip to content

Update an Asset Folder

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/asset_folders/:asset_folder_id

This endpoint allows updating an existing asset folder using the numeric ID.

  • :space_id required number

    Numeric ID of a space

  • :asset_folder_id required number

    ID of the folder

Example Request

curl "https://mapi.storyblok.com/v1/spaces/606/asset_folders/414142" \
-X PUT \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"asset_folder\":{\"name\":\"Updated folder\",\"parent_id\":288983}}"