GET https://:account.api-us1.com/api/3/calendars/:id
- cURL
curl --request GET \
--url https:///:account.api-us1.com/api/3/calendars/:id
- Node
var request = require("request");
var options = { method: 'GET',
url: 'https:///:account.api-us1.com/api/3/calendars/: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/calendars/: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/calendars/:id");
xhr.send(data);
- Python
import requests
url = "https:///:account.api-us1.com/api/3/calendars/:id"
response = requests.request("GET", url)
print(response.text)
404 Not Found
{ "message": "No Result found for Calendar with id 1" }
PATH PARAMS
ID REQUIRED
int32 ID of the calendar feed to retrieve
Opmerkingen
0 opmerkingen
Artikel is gesloten voor opmerkingen.