Lists all buyer product approvals
curl --request GET \
--url https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals \
--header 'X-API-KEY: <api-key>'import requests
url = "https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals', 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://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$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://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "99999a99-b888-777c-666d-55555555555e",
"approval_status": "approved",
"supplier_name": "Supplier Co",
"catalogue_parent_display_name": "NaOH-50",
"catalogue_parent_product_code": "SUP-001",
"reference": "REF-001",
"buyer_product_id": "99999a99-b888-777c-666d-55555555555e",
"supplier_profile_id": "99999a99-b888-777c-666d-55555555555e",
"code": "BPA-CODE",
"name": "BPA-NAME",
"resource_values": [
{
"provider": "cin7_core",
"value": "99999a99-b888-777c-666d-55555555555e"
}
],
"created_at": "2025-12-31T23:13:11.862Z",
"updated_at": "2025-12-31T23:13:11.862Z"
}
]Buyer Product Approvals
Lists all buyer product approvals
GET
/
api
/
public
/
buyer
/
v1
/
buyer_product_approvals
Lists all buyer product approvals
curl --request GET \
--url https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals \
--header 'X-API-KEY: <api-key>'import requests
url = "https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals"
headers = {"X-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-KEY': '<api-key>'}};
fetch('https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals', 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://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-KEY: <api-key>"
],
]);
$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://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-KEY", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals")
.header("X-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.chemcloud.com.au/api/public/buyer/v1/buyer_product_approvals")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body[
{
"id": "99999a99-b888-777c-666d-55555555555e",
"approval_status": "approved",
"supplier_name": "Supplier Co",
"catalogue_parent_display_name": "NaOH-50",
"catalogue_parent_product_code": "SUP-001",
"reference": "REF-001",
"buyer_product_id": "99999a99-b888-777c-666d-55555555555e",
"supplier_profile_id": "99999a99-b888-777c-666d-55555555555e",
"code": "BPA-CODE",
"name": "BPA-NAME",
"resource_values": [
{
"provider": "cin7_core",
"value": "99999a99-b888-777c-666d-55555555555e"
}
],
"created_at": "2025-12-31T23:13:11.862Z",
"updated_at": "2025-12-31T23:13:11.862Z"
}
]Authorizations
Response
200 - application/json
Approvals retrieved
Example:
"99999a99-b888-777c-666d-55555555555e"
Status of the approved material
Available options:
preferred, purchased, approved, sample_requested, sample_approved, pending, unstarted, inactive, unapproved Example:
"approved"
Name of the supplier
Example:
"Supplier Co"
Supplier's name for the product
Example:
"NaOH-50"
Supplier's code for the product
Example:
"SUP-001"
ChemCloud user-friendly reference for the approved material
Example:
"REF-001"
Example:
"99999a99-b888-777c-666d-55555555555e"
Example:
"99999a99-b888-777c-666d-55555555555e"
Buyer's code for the approved material
Example:
"BPA-CODE"
Buyer's name for the approved material
Example:
"BPA-NAME"
Show child attributes
Show child attributes
Example:
"2025-12-31T23:13:11.862Z"
Example:
"2025-12-31T23:13:11.862Z"
Was this page helpful?

