Open Context Protocol is live! 🚀 Read the launch post

updateCustomContent

Update custom content

PUT /custom-content/{id} HTTP/1.1

Parameters

{
  "id": {
    "description": "The ID of the custom content to be updated. If you don't know the custom content ID, use Get Custom Content by Type and filter the results.",
    "required": true,
    "location": "path",
    "type": "integer",
    "format": "int64"
  }
}

Response Schema

{
  "allOf": [
    {
      "$ref": "#/components/schemas/CustomContentSingle"
    },
    {
      "type": "object",
      "properties": {
        "_links": {
          "type": "object",
          "properties": {
            "base": {
              "type": "string",
              "description": "Base url of the Confluence site."
            }
          }
        }
      }
    }
  ]
}