import boto3
client = boto3.client('cognito-idp')
def lambda_handler(event,context):
response = client.list_users(
UserPoolId='us-east-1_TIzqd0Fik',
)
return response
i want all users from cognito through API. But i am getting this error "Object of type datetime is not JSON serializable"