Skip to content
Get started

Retrieve a worker email address

workers.retrieve_email(strworker_id) -> WorkerRetrieveEmailResponse
GET/api/workers/{workerId}/email

Retrieve the inbound email address for a worker.

ParametersExpand Collapse
worker_id: str
ReturnsExpand Collapse
str

Retrieve a worker email address

import os
from handinger import Handinger

client = Handinger(
    api_key=os.environ.get("HANDINGER_API_KEY"),  # This is the default and can be omitted
)
response = client.workers.retrieve_email(
    "t_org_123_w_01HZY2ZJQ8G7K42W2D7WF6V4GM",
)
print(response)
"string"
Returns Examples
"string"