GET https://:account.api-us1.com/api/3/scores/id
- cURL
curl --request GET \
--url https:///:account.api-us1.com/api/3/scores/id
- Node
var request = require("request");
var options = { method: 'GET',
url: 'https:///:account.api-us1.com/api/3/scores/id' };
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/scores/id")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.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("GET", "https:///:account.api-us1.com/api/3/scores/id");
xhr.send(data);
- Python
import requests
url = "https:///:account.api-us1.com/api/3/scores/id"
response = requests.request("GET", url)
print(response.text)
200 OK
{
"score": {
"reltype": "contact",
"name": "Link Engagement Score",
"descript": "+50 points when user clicks any link sent",
"status": "1",
"cdate": "2018-12-13T15:05:42-06:00",
"mdate": "2018-12-13T16:23:07-06:00",
"links": [],
"id": "2"
}
}
404 Not Found
PATH PARAMS
id REQUIRED
int32 ID of the score to retrieve
Opmerkingen
0 opmerkingen
Artikel is gesloten voor opmerkingen.