I am using the python SDK and I when I use the method “.committer” or “.last_modified_by” on a pipeline object, I am expecting to get back an email that I am able to see under “Committed By” on the platform. However, I get back a long string that I can’t make out:
sudo code of what I am doing:
sch = ControlHub(credential_id="cred_id,token = token)
print(sch.pipelines.get(commit_id = commit_id).last_modified_by)
and instead of getting a string of an email returned, I am getting something like this returned:
a83b3195-61f4-11ee-a6e4-…..@b5f95dcd-5f00-11ec-b405-……
Would you happen to know how I can turn this string into a valid email? I couldn’t find anything on this topic in the docs.