I have created an integration with our app and have successfully made this work without including a link.
This morning I have attempted to add the link and I’m receiving the response deserialization error which I understand is that the output is not matching the required format/fields.
Here is the json that I am returning
{
"results":[
{
"objectId":124783,
"title":"Presentation and Public Speaking Skills",
"link":"https://tswt.administrateapp.com/beta#/events/events/31823#students",
"type":"Delegate",
"status":"attended",
"event_start":"2019-12-10T09:00:00Z",
"event_end":"2019-12-11T09:00:00Z",
"attendance":100
},
{
"objectId":124781,
"title":"Time Management",
"link":"https://tswt.administrateapp.com/beta#/events/events/31794#students",
"type":"Delegate",
"status":"attended",
"event_start":"2019-12-02T09:00:00Z",
"event_end":"2019-12-02T09:00:00Z",
"attendance":100
},
{
"objectId":116803,
"title":"Time Management",
"link":"https://tswt.administrateapp.com/beta#/events/events/31792#students",
"type":"Delegate",
"status":"cancelled",
"event_start":"2019-06-07T09:00:00Z",
"event_end":"2019-06-07T09:00:00Z",
"attendance":0
},
{
"objectId":115684,
"title":"Mental Health Awareness",
"link":"https://tswt.administrateapp.com/beta#/events/events/32951#students",
"type":"Delegate",
"status":"cancelled",
"event_start":"2019-04-02T09:00:00Z",
"event_end":"2019-04-02T09:00:00Z",
"attendance":0
},
{
"objectId":116095,
"title":"Time Management",
"link":"https://tswt.administrateapp.com/beta#/events/events/31790#students",
"type":"Delegate",
"status":"cancelled",
"event_start":"2019-01-29T09:00:00Z",
"event_end":"2019-01-29T09:00:00Z",
"attendance":0
},
{
"objectId":112287,
"title":"HABC Emergency First Aid at Work",
"link":"https://tswt.administrateapp.com/beta#/events/events/30881#students",
"type":"Delegate",
"status":"attended",
"event_start":"2018-09-21T09:00:00Z",
"event_end":"2018-09-21T09:00:00Z",
"attendance":100
},
{
"objectId":105933,
"title":"Customer Service & Complaint Handling",
"link":"https://tswt.administrateapp.com/beta#/events/events/29721#students",
"type":"Delegate",
"status":"attended",
"event_start":"2018-03-29T09:00:00Z",
"event_end":"2018-03-29T09:00:00Z",
"attendance":100
}
],
"totalCount":7,
"allItemLink":"https://tswt.administrateapp.com/ViewContact/view/id/29883",
"itemLabel":"View all Events"
}
I’m pretty sure it is to do with the link but I cannot identify the cause. I’ve checked the usual issues (making sure a link is set or is null etc) but no joy. Any advice?