curl --request POST \
--url https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"listingIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"minVolume": 2,
"maxVolume": 2,
"minVintageYear": "Any",
"maxVintageYear": 2020,
"buyerDescription": "<string>",
"reference": "<string>",
"fulfilmentDueDate": "2023-12-25",
"reportingPeriodStart": "2023-12-25",
"reportingPeriodEnd": "2023-12-25",
"additionalRequirements": "<string>",
"responseDueDate": "2023-12-25"
}
'import requests
url = "https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs"
payload = {
"listingIds": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"minVolume": 2,
"maxVolume": 2,
"minVintageYear": "Any",
"maxVintageYear": 2020,
"buyerDescription": "<string>",
"reference": "<string>",
"fulfilmentDueDate": "2023-12-25",
"reportingPeriodStart": "2023-12-25",
"reportingPeriodEnd": "2023-12-25",
"additionalRequirements": "<string>",
"responseDueDate": "2023-12-25"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
listingIds: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
minVolume: 2,
maxVolume: 2,
minVintageYear: 'Any',
maxVintageYear: 2020,
buyerDescription: '<string>',
reference: '<string>',
fulfilmentDueDate: '2023-12-25',
reportingPeriodStart: '2023-12-25',
reportingPeriodEnd: '2023-12-25',
additionalRequirements: '<string>',
responseDueDate: '2023-12-25'
})
};
fetch('https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs', 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://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'listingIds' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'minVolume' => 2,
'maxVolume' => 2,
'minVintageYear' => 'Any',
'maxVintageYear' => 2020,
'buyerDescription' => '<string>',
'reference' => '<string>',
'fulfilmentDueDate' => '2023-12-25',
'reportingPeriodStart' => '2023-12-25',
'reportingPeriodEnd' => '2023-12-25',
'additionalRequirements' => '<string>',
'responseDueDate' => '2023-12-25'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs"
payload := strings.NewReader("{\n \"listingIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"minVolume\": 2,\n \"maxVolume\": 2,\n \"minVintageYear\": \"Any\",\n \"maxVintageYear\": 2020,\n \"buyerDescription\": \"<string>\",\n \"reference\": \"<string>\",\n \"fulfilmentDueDate\": \"2023-12-25\",\n \"reportingPeriodStart\": \"2023-12-25\",\n \"reportingPeriodEnd\": \"2023-12-25\",\n \"additionalRequirements\": \"<string>\",\n \"responseDueDate\": \"2023-12-25\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"listingIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"minVolume\": 2,\n \"maxVolume\": 2,\n \"minVintageYear\": \"Any\",\n \"maxVintageYear\": 2020,\n \"buyerDescription\": \"<string>\",\n \"reference\": \"<string>\",\n \"fulfilmentDueDate\": \"2023-12-25\",\n \"reportingPeriodStart\": \"2023-12-25\",\n \"reportingPeriodEnd\": \"2023-12-25\",\n \"additionalRequirements\": \"<string>\",\n \"responseDueDate\": \"2023-12-25\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"listingIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"minVolume\": 2,\n \"maxVolume\": 2,\n \"minVintageYear\": \"Any\",\n \"maxVintageYear\": 2020,\n \"buyerDescription\": \"<string>\",\n \"reference\": \"<string>\",\n \"fulfilmentDueDate\": \"2023-12-25\",\n \"reportingPeriodStart\": \"2023-12-25\",\n \"reportingPeriodEnd\": \"2023-12-25\",\n \"additionalRequirements\": \"<string>\",\n \"responseDueDate\": \"2023-12-25\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"statusCode": 400,
"message": "<string>",
"error": 123
}{
"statusCode": 401,
"message": "<string>",
"error": 123
}{
"statusCode": 403,
"message": "<string>",
"error": 123
}{
"statusCode": 404,
"message": "<string>",
"error": 123
}{
"statusCode": 500,
"message": "<string>",
"error": 123
}POST RFQ
Create Request For Quote as a channel
curl --request POST \
--url https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"listingIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"minVolume": 2,
"maxVolume": 2,
"minVintageYear": "Any",
"maxVintageYear": 2020,
"buyerDescription": "<string>",
"reference": "<string>",
"fulfilmentDueDate": "2023-12-25",
"reportingPeriodStart": "2023-12-25",
"reportingPeriodEnd": "2023-12-25",
"additionalRequirements": "<string>",
"responseDueDate": "2023-12-25"
}
'import requests
url = "https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs"
payload = {
"listingIds": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"minVolume": 2,
"maxVolume": 2,
"minVintageYear": "Any",
"maxVintageYear": 2020,
"buyerDescription": "<string>",
"reference": "<string>",
"fulfilmentDueDate": "2023-12-25",
"reportingPeriodStart": "2023-12-25",
"reportingPeriodEnd": "2023-12-25",
"additionalRequirements": "<string>",
"responseDueDate": "2023-12-25"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
listingIds: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
minVolume: 2,
maxVolume: 2,
minVintageYear: 'Any',
maxVintageYear: 2020,
buyerDescription: '<string>',
reference: '<string>',
fulfilmentDueDate: '2023-12-25',
reportingPeriodStart: '2023-12-25',
reportingPeriodEnd: '2023-12-25',
additionalRequirements: '<string>',
responseDueDate: '2023-12-25'
})
};
fetch('https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs', 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://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'listingIds' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'minVolume' => 2,
'maxVolume' => 2,
'minVintageYear' => 'Any',
'maxVintageYear' => 2020,
'buyerDescription' => '<string>',
'reference' => '<string>',
'fulfilmentDueDate' => '2023-12-25',
'reportingPeriodStart' => '2023-12-25',
'reportingPeriodEnd' => '2023-12-25',
'additionalRequirements' => '<string>',
'responseDueDate' => '2023-12-25'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs"
payload := strings.NewReader("{\n \"listingIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"minVolume\": 2,\n \"maxVolume\": 2,\n \"minVintageYear\": \"Any\",\n \"maxVintageYear\": 2020,\n \"buyerDescription\": \"<string>\",\n \"reference\": \"<string>\",\n \"fulfilmentDueDate\": \"2023-12-25\",\n \"reportingPeriodStart\": \"2023-12-25\",\n \"reportingPeriodEnd\": \"2023-12-25\",\n \"additionalRequirements\": \"<string>\",\n \"responseDueDate\": \"2023-12-25\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"listingIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"minVolume\": 2,\n \"maxVolume\": 2,\n \"minVintageYear\": \"Any\",\n \"maxVintageYear\": 2020,\n \"buyerDescription\": \"<string>\",\n \"reference\": \"<string>\",\n \"fulfilmentDueDate\": \"2023-12-25\",\n \"reportingPeriodStart\": \"2023-12-25\",\n \"reportingPeriodEnd\": \"2023-12-25\",\n \"additionalRequirements\": \"<string>\",\n \"responseDueDate\": \"2023-12-25\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.connect.bluelayer.tech/v1/orgs/{orgName}/channels/{channelSlug}/rfqs")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"listingIds\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"minVolume\": 2,\n \"maxVolume\": 2,\n \"minVintageYear\": \"Any\",\n \"maxVintageYear\": 2020,\n \"buyerDescription\": \"<string>\",\n \"reference\": \"<string>\",\n \"fulfilmentDueDate\": \"2023-12-25\",\n \"reportingPeriodStart\": \"2023-12-25\",\n \"reportingPeriodEnd\": \"2023-12-25\",\n \"additionalRequirements\": \"<string>\",\n \"responseDueDate\": \"2023-12-25\"\n}"
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"statusCode": 400,
"message": "<string>",
"error": 123
}{
"statusCode": 401,
"message": "<string>",
"error": 123
}{
"statusCode": 403,
"message": "<string>",
"error": 123
}{
"statusCode": 404,
"message": "<string>",
"error": 123
}{
"statusCode": 500,
"message": "<string>",
"error": 123
}Authorizations
Body
1Listings that the RFQ is addressing
spot, forward Minimum volume of credits requested
x >= 11000
Maximum volume of credits requested
x >= 15000
Minimum vintage year, or 'Any' if no minimum
Any "Any"
Maximum vintage year, or 'Any' if no maximum
Any 2020
Buyer description
"This is a short description of the buyer, which will give context to the project developer when answering"
The channel's reference to this request
"1b5100e62ed2"
transfer, retirement, assignment The date by which the credits should be fulfilled
"2026-01-20"
Show child attributes
Show child attributes
Vintage start date
"2026-01-20"
Vintage end date
"2026-01-20"
buyToRetire, buyToSell, other Any additional requirements for the RFQ
"Credits must be from projects verified by Verra and must have a minimum of 10 years of crediting period left."
The date by which the response is due
"2026-01-20"
Response
Default Response