- Community Home
- >
- Software
- >
- HPE Morpheus Software
- >
- HPE Morpheus Enterprise
- >
- Not able to create the Instance wiki page for an i...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 03:17 AM
12-22-2022 03:17 AM
Hi Team,
I have integrated Morpheus provision policy with ServiceNow Workflow. During the creation of request in the ServiceNow, I want to update the request URL in the instance wiki but getting API not existed. But when I have added some value in the wiki manually after that from the rest call put method , I am able to update the wiki. Request you to guide how to do post call on instance wiki as there is nothing mentioned in the morpheus API document.
Thanks
Rakesh Gupta
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-05-2023 02:01 AM
01-05-2023 02:01 AM
Re: Not able to create the Instance wiki page for an instance
Hello @rboyd ,
Thanks for the guidance. I am able to fix the issue.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2022 06:04 AM
12-22-2022 06:04 AM
SolutionHi @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.