Get a feed
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/feeds/{feed_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://fulfillment.noyo.com/api/v1/feeds/{feed_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://fulfillment.noyo.com/api/v1/feeds/{feed_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://fulfillment.noyo.com/api/v1/feeds/{feed_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://fulfillment.noyo.com/api/v1/feeds/{feed_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://fulfillment.noyo.com/api/v1/feeds/{feed_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://fulfillment.noyo.com/api/v1/feeds/{feed_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"configuration": {
"cadence": {
"end_date": "2024-03-01",
"next_transmission": "2024-08-30T10:00:00+00:00",
"paused": true,
"rrule": "RRULE:FREQ=DAILY",
"start_date": "2023-03-01",
"time_of_day": "06:00",
"zone_info": "US/Eastern"
}
},
"created": 1690395918,
"last_transmission": {
"id": "bda1b068-3e6a-4cc3-9769-0fb8a38649ce",
"sent_timestamp": 1759238254
},
"modified": 1690395918,
"name": "feed-me",
"next_transmission": 1759339054,
"paused": false,
"status": "active",
"version": "49ed5785-d8e1-4c3d-a09d-2f3625b9f2b1"
}Feeds
Get Feed
Get a specific feed
GET
/
api
/
v1
/
feeds
/
{feed_id}
Get a feed
curl --request GET \
--url https://fulfillment.noyo.com/api/v1/feeds/{feed_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://fulfillment.noyo.com/api/v1/feeds/{feed_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://fulfillment.noyo.com/api/v1/feeds/{feed_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://fulfillment.noyo.com/api/v1/feeds/{feed_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://fulfillment.noyo.com/api/v1/feeds/{feed_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://fulfillment.noyo.com/api/v1/feeds/{feed_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://fulfillment.noyo.com/api/v1/feeds/{feed_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"configuration": {
"cadence": {
"end_date": "2024-03-01",
"next_transmission": "2024-08-30T10:00:00+00:00",
"paused": true,
"rrule": "RRULE:FREQ=DAILY",
"start_date": "2023-03-01",
"time_of_day": "06:00",
"zone_info": "US/Eastern"
}
},
"created": 1690395918,
"last_transmission": {
"id": "bda1b068-3e6a-4cc3-9769-0fb8a38649ce",
"sent_timestamp": 1759238254
},
"modified": 1690395918,
"name": "feed-me",
"next_transmission": 1759339054,
"paused": false,
"status": "active",
"version": "49ed5785-d8e1-4c3d-a09d-2f3625b9f2b1"
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Unique identifier of the feed
Response
200 - application/json
Successful Response - Returns a single feed
Unique identifier of the carrier in Noyo
Configuration of the feed
Show child attributes
Show child attributes
The date the record was created
List of group IDs associated with this feed
Unique identifier of the record in Noyo
The date the record was last updated
Status of the feed
Whether feed is paused or not
Current version of the record
Last transmission of feed
Show child attributes
Show child attributes
Next transmission date of feed
Was this page helpful?
