I have access one of my xCP 2.1 project stateless process resource through REST webservice.
{
- "id": "types/processes.json/xcp_getfolderid",
- "title": "xcp_getfolderid",
- "summary": "get Folder Id From Folder Path",
- "updated": "2014-05-26T08:03:35.765-04:00",
- "content": {
- "content-type": "application/vnd.emc.xcp+json",
- "src": "types/processes.json/xcp_getfolderid"
}, - "links": [
- {
- "rel": "self",
- "href": "types/processes.json/xcp_getfolderid"
}
]
}
where the process needs input parameters as folder path/name/type/id.
How to pass the input parameters to below URL http://****.****.com:8080/MYAPP/types/processes.json/xcp_getfolderid to get the folder id response.
Right now I am getting error as
<dm:error><dm:status>404</dm:status><dm:code>E_RESOURCE_NOT_FOUND</dm:code><dm:message>Operation on object failed because the specified resource by ID, name, type or path is not found</dm:message><dm:details/></dm:error>
Thanks,
Srini