Skip to content

Update an Internal Tag

Terminal window
https://mapi.storyblok.com/v1/spaces/:space_id/internal_tags/:internal_tag_id

This endpoint allows updating an internal tag using the numeric ID.

  • :space_id required number

    Numeric ID of a space

  • :internal_tag_id required number

    Numeric ID of the internal tag

  • internal_tag The Internal Tag Object

    An internal tag object

  • internal_tag The Internal Tag Object

    An internal tag object

curl "https://mapi.storyblok.com/v1/spaces/606/internal_tags/123" \
-X PUT \
-H "Authorization: YOUR_OAUTH_TOKEN" \
-H "Content-Type: application/json" \
-d "{\"internal_tag\":{\"name\":\"Updated Tag name\",\"object_type\":\"asset\"}}"