Email Addresses
Get Email Addresses
GET
/
email-addresses
Copy
curl --request GET \
--url https://api.atlos.dev/email-addresses \
--header 'x-api-key: <api-key>'
Copy
{
"status": "<string>",
"message": "<string>",
"data": [
{
"id": "<string>",
"org_id": "<string>",
"user_id": "<string>",
"identifier": "<string>",
"domain": "<string>",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Response
200 - application/json
Successful Response
The response is of type object
.
Copy
curl --request GET \
--url https://api.atlos.dev/email-addresses \
--header 'x-api-key: <api-key>'
Copy
{
"status": "<string>",
"message": "<string>",
"data": [
{
"id": "<string>",
"org_id": "<string>",
"user_id": "<string>",
"identifier": "<string>",
"domain": "<string>",
"metadata": {},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.