Cherwell Integration issue

Hi!

We are integrating AE and Cherwell. I am getting the following error on testing.

2021-03-08 00:01:00 MST (-07:00) IntgScheduler_Worker-4 INFO CherwellIntegrationController:119 - AE Request JSON
2021-03-08 00:01:00 MST (-07:00) IntgScheduler_Worker-4 DEBUG CherwellIntegrationController:127 - Empty Json received, Error While DeSerialization:Unrecognized token ‘String’: was expecting (‘true’, ‘false’ or ‘null’)

This issue has been resolved after adding " " in the “type”:“String”

Before:

{
“type”: String,
}

Thank you!

After:

{
“type”: “String”,
}