Mail

Mail

Automatisch toegevoegd vanuit OpenAPI sync.

Verzonden e-mails ophalen

GET /v1/emails
Authorization: HTTP
name: httpBearer
type: http
scheme: bearer
Request body

Geen

Response
data array
id string
subject string
status string
delivered_at string
opened_at string
clicked_at string
open_count integer
click_count integer
created_at string
meta object

Examples

GET /v1/emails
curl -X GET "https://api.appficient.nl/v1/emails" \
  -H "Authorization: Bearer apf_xxxxxxxx" \
  -H "Accept: application/json"

Curl, Node en response staan rechts naast dit endpoint.

Verzonden e-mail ophalen

GET /v1/emails/{id}
Authorization: HTTP
name: httpBearer
type: http
scheme: bearer
Path
Naam Type Beschrijving
id Required string
Request body

Geen

Response
data object
id string
subject string
status string
delivered_at string
opened_at string
clicked_at string
open_count integer
click_count integer
created_at string
meta object

Examples

GET /v1/emails/{id}
curl -X GET "https://api.appficient.nl/v1/emails/{id}" \
  -H "Authorization: Bearer apf_xxxxxxxx" \
  -H "Accept: application/json"

Curl, Node en response staan rechts naast dit endpoint.

E-mailsjablonen ophalen

GET /v1/mail-templates
Authorization: HTTP
name: httpBearer
type: http
scheme: bearer
Request body

Geen

Response
data array
type string
title string
subject string
meta object

Examples

GET /v1/mail-templates
curl -X GET "https://api.appficient.nl/v1/mail-templates" \
  -H "Authorization: Bearer apf_xxxxxxxx" \
  -H "Accept: application/json"

Curl, Node en response staan rechts naast dit endpoint.