Addresses this mailbox has written to
GET
/api/v1/mailbox/contactsHarvested from the Sent folder, most-used first, for compose autocomplete. People WRITTEN TO only -- senders of received mail are deliberately excluded, or every cold email and newsletter in the inbox would become a suggestion. Colleagues nobody has written to yet come from the company directory instead.
Request
GET
/api/v1/mailbox/contactscurl -X GET 'https://app.mailyte.com/api/v1/mailbox/contacts' \
-H 'Authorization: Bearer MAILBOX_TOKEN'const response = await fetch('https://app.mailyte.com/api/v1/mailbox/contacts', {
method: 'GET',
headers: {
Authorization: 'Bearer MAILBOX_TOKEN',
},
});
const { data } = await response.json();import requests
response = requests.get(
"https://app.mailyte.com/api/v1/mailbox/contacts",
headers={"Authorization": "Bearer MAILBOX_TOKEN"},
)
data = response.json()["data"]<?php
$response = Http::withToken('MAILBOX_TOKEN')
->get('https://app.mailyte.com/api/v1/mailbox/contacts');
$data = $response->json('data');require "net/http"
require "json"
uri = URI("https://app.mailyte.com/api/v1/mailbox/contacts")
request = Net::HTTP::Get.new(uri)
request["Authorization"] = "Bearer MAILBOX_TOKEN"
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) { |http| http.request(request) }Response
Successful Response
Returned inside the standard envelope.
Errors
Every status, with what causes it and what to do, is on the error reference.