POST https://:account.api-us1.com/api/3/contactAutomations
- cURL
curl --request POST \
--url https:///:account.api-us1.com/api/3/contactAutomations
- Node
var request = require("request");
var options = { method: 'POST',
url: 'https:///:account.api-us1.com/api/3/contactAutomations' };
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});
- Ruby
require 'uri'
require 'net/http'
url = URI("https:///:account.api-us1.com/api/3/contactAutomations")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
response = http.request(request)
puts response.read_body
- JavaScript
var data = JSON.stringify(false);
var xhr = new XMLHttpRequest();
xhr.withCredentials = true;
xhr.addEventListener("readystatechange", function () {
if (this.readyState === this.DONE) {
console.log(this.responseText);
}
});
xhr.open("POST", "https:///:account.api-us1.com/api/3/contactAutomations");
xhr.send(data);
- Python
import requests
url = "https:///:account.api-us1.com/api/3/contactAutomations"
response = requests.request("POST", url)
print(response.text)
201 Created
BODY PARAMS
contactAutomation
object
contactAutomation.contact REQUIRED
int32 Contact ID of the Contact, to be linked to the contactAutomation
contactAutomation.automation REQUIRED
int32 Automation ID of the automation, to be linked to the contactAutomation
Opmerkingen
0 opmerkingen
Artikel is gesloten voor opmerkingen.