Zum Hauptinhalt springen
GET
/
customer-email-addresses
/
{id}
cURL
curl -X GET \
 /customer-email-addresses/{id} \
 --header "Authorization: Bearer <token>"
{
  "email": "john.doe@example.com",
  "receiverName": "John Doe",
  "id": "00000000-0000-0000-0000-000000000000",
  "isInvoiceEmail": true,
  "isDunningEmail": false,
  "default": "true"
}

Autorisierungen

Authorization
string
header
erforderlich

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Pfadparameter

id
string
erforderlich

CustomerEmail identifier

Antwort

CustomerEmail resource

email
string<email>
erforderlich
Maximum string length: 255
Beispiel:

"john.doe@example.com"

receiverName
string
erforderlich
Maximum string length: 255
Beispiel:

"John Doe"

id
string
Beispiel:

"00000000-0000-0000-0000-000000000000"

isInvoiceEmail
boolean

Use this email for invoices, credits and financial documents.

Beispiel:

true

isDunningEmail
boolean

Use this email for dunning reminders and payment reminders.

Beispiel:

false

default
boolean
Beispiel:

"true"