GET
/
employees
/
{id}
/
emails
curl --request GET \
  --url https://api.pocketflows.com/employees/{id}/emails \
  --header 'Authorization: Basic <encoded-value>'
{
  "emails": [
    {
      "id": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.

Path Parameters

id
string
required

The ID of the employee

Response

200 - application/json

A dictionary with an emails property which is an array of Email objects

The response is of type object.