latestOpenAPI 3.1.0MIT2026-08-103050171.2 KB

ebcbb377ee0f

Fax to Email

Add an email

Add an email to the specified service to be used for sending and receiving faxes. Default settings for permissions parameter is both.

post/services/{serviceId}/emails

Path parameters

serviceIdstring required

The serviceId to which you want to add the email.

Request body

emailstring email required
projectIdstring

The Id of the project associated with the call.

createdAtstring date-time

The date and time the email configuration was created.

updatedAtstring date-time

The date and time the email configuration was last updated.

Example request

{
  "email": "user@domain.com",
  "phoneNumbers": [
    {
      "faxNumber": "+15551235656"
    }
  ],
  "projectId": "ae00f005-e392-44dc-b3f5-a657a2684dg3"
}

Response

The added email

emailstring email required
projectIdstring

The Id of the project associated with the call.

createdAtstring date-time

The date and time the email configuration was created.

updatedAtstring date-time

The date and time the email configuration was last updated.

Example response

{
  "email": "user@domain.com",
  "phoneNumbers": [
    {
      "faxNumber": "+15551235656"
    }
  ],
  "projectId": "ae00f005-e392-44dc-b3f5-a657a2684dg3"
}