Not able to create the Instance wiki page for an instance

Hi @rakabhai,

After the instance is created you would just make a put call using the instance id.

So if my instance id is 460 then my put would look like https://morpheusurl/api/instances/460/wiki

my body looks like

{
“page”: {
“content”: “this is a wiki test”
}
}

The put will do a replace so if you are looking to do an append you will first need to get the wiki and then add to it in a put.

Hope that helps.

1 Like