Hi,
I have a custom connector that retrieves data from an API.
The API correctly returns all the required fields.
When i call this custom connector using Flow, the data is returned, HOWEVER, if one of the values contains a NULL it does not appear in the schema, which causes the flow to break further down.
Example:
Source from the custom connector:
"UserId": "24XILTQNtfUu4VwsfLZN3A2",
"Title": "Test Course",
"CourseId": "G8ZeXsFgng41",
"Score": "",
"Result": "Complete",
"Type": "Course Completed",
"AchievementId": 64881430,
"CertificateId": null
}
what is returned from the custom connector using Flow :
"UserId": "24XILTQNtfUu4VwsfLZN3A2",
"Title": "Test Course",
"CourseId": "G8ZeXsFgng41",
"Score": "",
"Result": "Complete",
"Type": "Course Completed",
"AchievementId": 64881430
}
As you can see , the "CertificateId" from the JSON is missing.
Is it normal behavior for flow to drop any json tags with null from a custom connector?
If so, how can i get around this??
swagger definition below: