BizKitHub
DocsAPI ReferenceContact/bff/contact/email-list
getContactAdmin BFF

/bff/contact/email-list

Returns every additional email associated with the contact and the channel toggles (invoices / reminders / marketing). The contact's primary shop__contact.email is NOT included — render it separately in the UI.

ContactgetBffContactEmail-list

Parameters

1 query

Query parameters

· 1
customerIdstringRequired

Contact external ID.

Exampleabc123def456ghij

Response schema

1 status code documented

200Success
itemsobject[]Required
Each array item:
idnumberRequired

Internal row id (use it for update / delete).

emailstringRequired
labelstring | nullRequired

Free-form role label, e.g. "Účetní", "Project manager", "Billing".

One of 2:
Variant 1
string
Variant 2
null
sendInvoicesbooleanRequired
sendRemindersbooleanRequired
sendMarketingbooleanRequired
positionnumberRequired

Display order within the contact (lower = primary).

insertedDatestringRequired
updatedDatestringRequired

Response example

application/json
{
  "items": [
    {
      "id": 0,
      "email": "example_email",
      "sendInvoices": false,
      "sendReminders": false,
      "sendMarketing": false,
      "position": 0,
      "insertedDate": "example_insertedDate",
      "updatedDate": "example_updatedDate"
    }
  ]
}

Request example

GET /bff/contact/email-list

get
curl -X GET "https://api.bizkithub.com/bff/contact/email-list?customerId=abc123def456ghij" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer YOUR_API_KEY"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key