Mose
09/03/2020, 4:06 PMdagster.check.ParameterCheckError: Param "msg" is not a str. Got {'id': 'sofijlaksdjfow', 'fields': {'id': 1, 'name': 'tester'}, 'createdTime': '2020-08-21T21:37:44.000Z'} which is type <class 'dict'>.
Here is the solid:
@solid
def get_lead_parameters(context):
lst = []
responses = json.loads(requests.get('')['data']
for res in responses:
lst.append(res)
return lst
And the above error is printed. This is the first solid and the next one just takes the list of dict .
Thanksalex
09/03/2020, 4:16 PMcontext.log
with a dict instead of a stringMose
09/03/2020, 5:12 PM