Get a single email channel
curl --request GET \
--url https://api.vambe.me/api/public/email-channel/{id} \
--header 'x-api-key: <x-api-key>'const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.vambe.me/api/public/email-channel/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/email-channel/{id}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"sender_address": "<string>",
"sender_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"email_domain": {
"id": "<string>",
"domain": "<string>",
"dns_records": [
{
"id": "<string>",
"host": "<string>",
"data": "<string>",
"valid": true
}
],
"planned_inbound_mx": {
"host": "<string>",
"data": "<string>"
},
"subdomain_slug": "<string>"
}
}{
"id": "<string>",
"sender_address": "<string>",
"sender_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"email_domain": {
"id": "<string>",
"domain": "<string>",
"dns_records": [
{
"id": "<string>",
"host": "<string>",
"data": "<string>",
"valid": true
}
],
"planned_inbound_mx": {
"host": "<string>",
"data": "<string>"
},
"subdomain_slug": "<string>"
}
}Email Channels & Campaigns
Get a single email channel
Includes domain validation status and DNS records.
GET
/
api
/
public
/
email-channel
/
{id}
Get a single email channel
curl --request GET \
--url https://api.vambe.me/api/public/email-channel/{id} \
--header 'x-api-key: <x-api-key>'const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.vambe.me/api/public/email-channel/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vambe.me/api/public/email-channel/{id}"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"id": "<string>",
"sender_address": "<string>",
"sender_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"email_domain": {
"id": "<string>",
"domain": "<string>",
"dns_records": [
{
"id": "<string>",
"host": "<string>",
"data": "<string>",
"valid": true
}
],
"planned_inbound_mx": {
"host": "<string>",
"data": "<string>"
},
"subdomain_slug": "<string>"
}
}{
"id": "<string>",
"sender_address": "<string>",
"sender_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"email_domain": {
"id": "<string>",
"domain": "<string>",
"dns_records": [
{
"id": "<string>",
"host": "<string>",
"data": "<string>",
"valid": true
}
],
"planned_inbound_mx": {
"host": "<string>",
"data": "<string>"
},
"subdomain_slug": "<string>"
}
}Was this page helpful?
⌘I
