Movatterモバイル変換


[0]ホーム

URL:


Logo Sweego

Inbound email routing

Set up inbound email to receive your incoming emails and integrate them into your application to automate your workflows

Routage d'emails entrants

Automate, analyse and route your incoming emails easily

Set up two-way email communications directly in your applications

Inbound Email Catchall

Create conversations with your users

Let your users reply to you or simply send emails to your app via JSON.

Use any address and our Catchall will take care of the rest.

Inbound email CatchAll

Your emails in JSON

Parsing emails yourself can be complex and time-consuming… We analyse all your incoming emails on your Inbound email domain and send them to you via webhook in JSON format.

Detailed logs

  • Real-time logs
  • Analyse in detail every email received and sent via webhook
  • Use our filters to analyse current or past events

Statistics for your incoming emails

Control the routing of your incoming emails.

Filter by domain to get to the heart of the matter and find out which mailboxes are being used to receive emails. You can track responses on your webhook endpoints at a glance.

  • Python

  • import requestsimport jsonurl="https://api.sweego.io/clients/:uuid_client/domains/inbound"payload= json.dumps({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"})headers={'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'}response= requests.request("POST", url,headers=headers,data=payload)print(response.text)
    <?php$curl=curl_init();curl_setopt_array($curl,array(  CURLOPT_URL=>'https://api.sweego.io/clients/:uuid_client/domains/inbound',  CURLOPT_RETURNTRANSFER=>true,  CURLOPT_ENCODING=>'',  CURLOPT_MAXREDIRS=>10,  CURLOPT_TIMEOUT=>0,  CURLOPT_FOLLOWLOCATION=>true,  CURLOPT_HTTP_VERSION=>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST=>'POST',  CURLOPT_POSTFIELDS=>'{  "name": "string",  "webhook_url": "string",  "subdomain": "string",  "uuid_domain": "string"}',  CURLOPT_HTTPHEADER=>array('Content-Type: application/json','Accept: application/json','Authorization: Bearer <TOKEN>'),));$response=curl_exec($curl);curl_close($curl);echo$response;
    package mainimport("fmt""net/http""io/ioutil")funcmain(){url:="https://api.sweego.io/clients/:uuid_client/domains/inbound"method:="GET"client:=&http.Client{}req,err:= http.NewRequest(method, url,nil)if err!=nil{    fmt.Println(err)return}  req.Header.Add("Accept","application/json")  req.Header.Add("Authorization","Bearer <TOKEN>")res,err:= client.Do(req)if err!=nil{    fmt.Println(err)return}defer res.Body.Close()body,err:= ioutil.ReadAll(res.Body)if err!=nil{    fmt.Println(err)return}  fmt.Println(string(body))}
    consthttps=require('follow-redirects').https;constfs=require('fs');letoptions={'method':'POST','hostname':'api.sweego.io','path':'/clients/:uuid_client/domains/inbound','headers':{'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'},'maxRedirects':20};constreq=https.request(options,(res)=>{letchunks= [];res.on("data",(chunk)=>{chunks.push(chunk);});res.on("end",(chunk)=>{letbody=Buffer.concat(chunks);console.log(body.toString());});res.on("error",(error)=>{console.error(error);});});letpostData=JSON.stringify({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"});req.write(postData);req.end();
    curl-L'https://api.sweego.io/clients/:uuid_client/domains/inbound' \-H'Content-Type: application/json' \-H'Accept: application/json' \-H'Authorization: Bearer <TOKEN>' \-d'{"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"}'
  • PHP

  • import requestsimport jsonurl="https://api.sweego.io/clients/:uuid_client/domains/inbound"payload= json.dumps({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"})headers={'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'}response= requests.request("POST", url,headers=headers,data=payload)print(response.text)
    <?php$curl=curl_init();curl_setopt_array($curl,array(  CURLOPT_URL=>'https://api.sweego.io/clients/:uuid_client/domains/inbound',  CURLOPT_RETURNTRANSFER=>true,  CURLOPT_ENCODING=>'',  CURLOPT_MAXREDIRS=>10,  CURLOPT_TIMEOUT=>0,  CURLOPT_FOLLOWLOCATION=>true,  CURLOPT_HTTP_VERSION=>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST=>'POST',  CURLOPT_POSTFIELDS=>'{  "name": "string",  "webhook_url": "string",  "subdomain": "string",  "uuid_domain": "string"}',  CURLOPT_HTTPHEADER=>array('Content-Type: application/json','Accept: application/json','Authorization: Bearer <TOKEN>'),));$response=curl_exec($curl);curl_close($curl);echo$response;
    package mainimport("fmt""net/http""io/ioutil")funcmain(){url:="https://api.sweego.io/clients/:uuid_client/domains/inbound"method:="GET"client:=&http.Client{}req,err:= http.NewRequest(method, url,nil)if err!=nil{    fmt.Println(err)return}  req.Header.Add("Accept","application/json")  req.Header.Add("Authorization","Bearer <TOKEN>")res,err:= client.Do(req)if err!=nil{    fmt.Println(err)return}defer res.Body.Close()body,err:= ioutil.ReadAll(res.Body)if err!=nil{    fmt.Println(err)return}  fmt.Println(string(body))}
    consthttps=require('follow-redirects').https;constfs=require('fs');letoptions={'method':'POST','hostname':'api.sweego.io','path':'/clients/:uuid_client/domains/inbound','headers':{'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'},'maxRedirects':20};constreq=https.request(options,(res)=>{letchunks= [];res.on("data",(chunk)=>{chunks.push(chunk);});res.on("end",(chunk)=>{letbody=Buffer.concat(chunks);console.log(body.toString());});res.on("error",(error)=>{console.error(error);});});letpostData=JSON.stringify({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"});req.write(postData);req.end();
    curl-L'https://api.sweego.io/clients/:uuid_client/domains/inbound' \-H'Content-Type: application/json' \-H'Accept: application/json' \-H'Authorization: Bearer <TOKEN>' \-d'{"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"}'
  • Go

  • import requestsimport jsonurl="https://api.sweego.io/clients/:uuid_client/domains/inbound"payload= json.dumps({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"})headers={'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'}response= requests.request("POST", url,headers=headers,data=payload)print(response.text)
    <?php$curl=curl_init();curl_setopt_array($curl,array(  CURLOPT_URL=>'https://api.sweego.io/clients/:uuid_client/domains/inbound',  CURLOPT_RETURNTRANSFER=>true,  CURLOPT_ENCODING=>'',  CURLOPT_MAXREDIRS=>10,  CURLOPT_TIMEOUT=>0,  CURLOPT_FOLLOWLOCATION=>true,  CURLOPT_HTTP_VERSION=>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST=>'POST',  CURLOPT_POSTFIELDS=>'{  "name": "string",  "webhook_url": "string",  "subdomain": "string",  "uuid_domain": "string"}',  CURLOPT_HTTPHEADER=>array('Content-Type: application/json','Accept: application/json','Authorization: Bearer <TOKEN>'),));$response=curl_exec($curl);curl_close($curl);echo$response;
    package mainimport("fmt""net/http""io/ioutil")funcmain(){url:="https://api.sweego.io/clients/:uuid_client/domains/inbound"method:="GET"client:=&http.Client{}req,err:= http.NewRequest(method, url,nil)if err!=nil{    fmt.Println(err)return}  req.Header.Add("Accept","application/json")  req.Header.Add("Authorization","Bearer <TOKEN>")res,err:= client.Do(req)if err!=nil{    fmt.Println(err)return}defer res.Body.Close()body,err:= ioutil.ReadAll(res.Body)if err!=nil{    fmt.Println(err)return}  fmt.Println(string(body))}
    consthttps=require('follow-redirects').https;constfs=require('fs');letoptions={'method':'POST','hostname':'api.sweego.io','path':'/clients/:uuid_client/domains/inbound','headers':{'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'},'maxRedirects':20};constreq=https.request(options,(res)=>{letchunks= [];res.on("data",(chunk)=>{chunks.push(chunk);});res.on("end",(chunk)=>{letbody=Buffer.concat(chunks);console.log(body.toString());});res.on("error",(error)=>{console.error(error);});});letpostData=JSON.stringify({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"});req.write(postData);req.end();
    curl-L'https://api.sweego.io/clients/:uuid_client/domains/inbound' \-H'Content-Type: application/json' \-H'Accept: application/json' \-H'Authorization: Bearer <TOKEN>' \-d'{"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"}'
  • NodeJS

  • import requestsimport jsonurl="https://api.sweego.io/clients/:uuid_client/domains/inbound"payload= json.dumps({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"})headers={'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'}response= requests.request("POST", url,headers=headers,data=payload)print(response.text)
    <?php$curl=curl_init();curl_setopt_array($curl,array(  CURLOPT_URL=>'https://api.sweego.io/clients/:uuid_client/domains/inbound',  CURLOPT_RETURNTRANSFER=>true,  CURLOPT_ENCODING=>'',  CURLOPT_MAXREDIRS=>10,  CURLOPT_TIMEOUT=>0,  CURLOPT_FOLLOWLOCATION=>true,  CURLOPT_HTTP_VERSION=>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST=>'POST',  CURLOPT_POSTFIELDS=>'{  "name": "string",  "webhook_url": "string",  "subdomain": "string",  "uuid_domain": "string"}',  CURLOPT_HTTPHEADER=>array('Content-Type: application/json','Accept: application/json','Authorization: Bearer <TOKEN>'),));$response=curl_exec($curl);curl_close($curl);echo$response;
    package mainimport("fmt""net/http""io/ioutil")funcmain(){url:="https://api.sweego.io/clients/:uuid_client/domains/inbound"method:="GET"client:=&http.Client{}req,err:= http.NewRequest(method, url,nil)if err!=nil{    fmt.Println(err)return}  req.Header.Add("Accept","application/json")  req.Header.Add("Authorization","Bearer <TOKEN>")res,err:= client.Do(req)if err!=nil{    fmt.Println(err)return}defer res.Body.Close()body,err:= ioutil.ReadAll(res.Body)if err!=nil{    fmt.Println(err)return}  fmt.Println(string(body))}
    consthttps=require('follow-redirects').https;constfs=require('fs');letoptions={'method':'POST','hostname':'api.sweego.io','path':'/clients/:uuid_client/domains/inbound','headers':{'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'},'maxRedirects':20};constreq=https.request(options,(res)=>{letchunks= [];res.on("data",(chunk)=>{chunks.push(chunk);});res.on("end",(chunk)=>{letbody=Buffer.concat(chunks);console.log(body.toString());});res.on("error",(error)=>{console.error(error);});});letpostData=JSON.stringify({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"});req.write(postData);req.end();
    curl-L'https://api.sweego.io/clients/:uuid_client/domains/inbound' \-H'Content-Type: application/json' \-H'Accept: application/json' \-H'Authorization: Bearer <TOKEN>' \-d'{"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"}'
  • curl

  • import requestsimport jsonurl="https://api.sweego.io/clients/:uuid_client/domains/inbound"payload= json.dumps({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"})headers={'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'}response= requests.request("POST", url,headers=headers,data=payload)print(response.text)
    <?php$curl=curl_init();curl_setopt_array($curl,array(  CURLOPT_URL=>'https://api.sweego.io/clients/:uuid_client/domains/inbound',  CURLOPT_RETURNTRANSFER=>true,  CURLOPT_ENCODING=>'',  CURLOPT_MAXREDIRS=>10,  CURLOPT_TIMEOUT=>0,  CURLOPT_FOLLOWLOCATION=>true,  CURLOPT_HTTP_VERSION=>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST=>'POST',  CURLOPT_POSTFIELDS=>'{  "name": "string",  "webhook_url": "string",  "subdomain": "string",  "uuid_domain": "string"}',  CURLOPT_HTTPHEADER=>array('Content-Type: application/json','Accept: application/json','Authorization: Bearer <TOKEN>'),));$response=curl_exec($curl);curl_close($curl);echo$response;
    package mainimport("fmt""net/http""io/ioutil")funcmain(){url:="https://api.sweego.io/clients/:uuid_client/domains/inbound"method:="GET"client:=&http.Client{}req,err:= http.NewRequest(method, url,nil)if err!=nil{    fmt.Println(err)return}  req.Header.Add("Accept","application/json")  req.Header.Add("Authorization","Bearer <TOKEN>")res,err:= client.Do(req)if err!=nil{    fmt.Println(err)return}defer res.Body.Close()body,err:= ioutil.ReadAll(res.Body)if err!=nil{    fmt.Println(err)return}  fmt.Println(string(body))}
    consthttps=require('follow-redirects').https;constfs=require('fs');letoptions={'method':'POST','hostname':'api.sweego.io','path':'/clients/:uuid_client/domains/inbound','headers':{'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'},'maxRedirects':20};constreq=https.request(options,(res)=>{letchunks= [];res.on("data",(chunk)=>{chunks.push(chunk);});res.on("end",(chunk)=>{letbody=Buffer.concat(chunks);console.log(body.toString());});res.on("error",(error)=>{console.error(error);});});letpostData=JSON.stringify({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"});req.write(postData);req.end();
    curl-L'https://api.sweego.io/clients/:uuid_client/domains/inbound' \-H'Content-Type: application/json' \-H'Accept: application/json' \-H'Authorization: Bearer <TOKEN>' \-d'{"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"}'
import requestsimport jsonurl="https://api.sweego.io/clients/:uuid_client/domains/inbound"payload= json.dumps({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"})headers={'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'}response= requests.request("POST", url,headers=headers,data=payload)print(response.text)
<?php$curl=curl_init();curl_setopt_array($curl,array(  CURLOPT_URL=>'https://api.sweego.io/clients/:uuid_client/domains/inbound',  CURLOPT_RETURNTRANSFER=>true,  CURLOPT_ENCODING=>'',  CURLOPT_MAXREDIRS=>10,  CURLOPT_TIMEOUT=>0,  CURLOPT_FOLLOWLOCATION=>true,  CURLOPT_HTTP_VERSION=>CURL_HTTP_VERSION_1_1,  CURLOPT_CUSTOMREQUEST=>'POST',  CURLOPT_POSTFIELDS=>'{  "name": "string",  "webhook_url": "string",  "subdomain": "string",  "uuid_domain": "string"}',  CURLOPT_HTTPHEADER=>array('Content-Type: application/json','Accept: application/json','Authorization: Bearer <TOKEN>'),));$response=curl_exec($curl);curl_close($curl);echo$response;
package mainimport("fmt""net/http""io/ioutil")funcmain(){url:="https://api.sweego.io/clients/:uuid_client/domains/inbound"method:="GET"client:=&http.Client{}req,err:= http.NewRequest(method, url,nil)if err!=nil{    fmt.Println(err)return}  req.Header.Add("Accept","application/json")  req.Header.Add("Authorization","Bearer <TOKEN>")res,err:= client.Do(req)if err!=nil{    fmt.Println(err)return}defer res.Body.Close()body,err:= ioutil.ReadAll(res.Body)if err!=nil{    fmt.Println(err)return}  fmt.Println(string(body))}
consthttps=require('follow-redirects').https;constfs=require('fs');letoptions={'method':'POST','hostname':'api.sweego.io','path':'/clients/:uuid_client/domains/inbound','headers':{'Content-Type':'application/json','Accept':'application/json','Authorization':'Bearer <TOKEN>'},'maxRedirects':20};constreq=https.request(options,(res)=>{letchunks= [];res.on("data",(chunk)=>{chunks.push(chunk);});res.on("end",(chunk)=>{letbody=Buffer.concat(chunks);console.log(body.toString());});res.on("error",(error)=>{console.error(error);});});letpostData=JSON.stringify({"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"});req.write(postData);req.end();
curl-L'https://api.sweego.io/clients/:uuid_client/domains/inbound' \-H'Content-Type: application/json' \-H'Accept: application/json' \-H'Authorization: Bearer <TOKEN>' \-d'{"name":"string","webhook_url":"string","subdomain":"string","uuid_domain":"string"}'

Manage your inbound email routing via API

Manage your incoming email routings via the API just as you would via the interface.

You can list, add, update or delete them.

Send your first message quickly !

Send up to 100 emails a day with a free account

White Icon Sweego

Logo Sweego
Manage Cookie Consent
To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
Functional Always active
The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
Preferences
The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
Statistics
The technical storage or access that is used exclusively for statistical purposes.The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
Marketing
The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
Manage optionsManage servicesManage {vendor_count} vendorsRead more about these purposes
View preferences
{title}{title}{title}
Talk to our Tech team

Subscribe to our newsletter

We’ll keep you up to date about our product, with exclusive news.

Please enable JavaScript in your browser to complete this form.
Checkboxes
The personal information is collected by Mindbaz in order to subscribe to our newsletter. Fields marked with an asterisk are mandatory. Under the data protection law, you have a right to rectification, erasure, access, object, restriction of processing, data portability and to define specific instructions for the fate of the data after your death. For further information and to exercise your rights, please read ourPrivacy Policy.
Loading

[8]ページ先頭

©2009-2025 Movatter.jp