I have built a custom connector to the Cascade CMS REST API. I have used the sample data provided from the responses I have pulled from Postman. When I attempt to run the flow, the connector response is given the default value of
{
"statusCode":200,"headers":
{
"Transfer-Encoding":"chunked",
"Vary":"Accept-Encoding",
"Request-Context":"appId=cid-v1:0c37065f-4d7c-47cf-af06-96cd9a75949d",
"x-ms-function-status":"OK",
"Date":"Wed, 22 Dec 2021 17:54:49 GMT",
"Content-Type":"application/json; charset=utf-8",
"Content-Length":"26"
},
"body":
{
"message":"Hello World"
}
}
Instead of the correct response of (example create/POST response)
http://localhost:8080/api/v1/create?u=hill&p=hill
{
'asset': {
'page': {
'name': 'test',
'parentFolderPath': '/',
'siteName': 'www.example.com',
'contentTypeId': 'b9bc37270a00016b00899e533ba18fe5',
'xhtml': '<div>Content</div>',
'metadata': {
'title': 'Page title'
}
}
}
}