Purchasing Rfq To Supplier Quote
The purchasing rfq to supplier quote resource.
/purchasingRfqToSupplierQuoteList purchasing rfq to supplier quotes
Retrieve a paginated list of purchasing rfq to supplier quotes. Filter, order, and select columns with PostgREST query parameters.
Query parameters
selectstringComma-separated columns to return. Defaults to all.
orderstringColumn to sort by, e.g. `createdAt.desc`.
limitintegerMaximum rows to return.
offsetintegerRows to skip, for pagination.
curl --request GET \
--url 'https://rest.carbon.ms/purchasingRfqToSupplierQuote?select=*&limit=10' \
--header 'Authorization: Bearer <api-key>'[
{
"purchasingRfqId": "xyz789",
"supplierQuoteId": "xyz789",
"companyId": "xyz789"
}
]/purchasingRfqToSupplierQuoteRetrieve a purchasing rfq to supplier quote
Fetch a single purchasing rfq to supplier quote by filtering on `purchasingRfqId`.
Query parameters
purchasingRfqIdstringMatch on the purchasing rfq to supplier quote's `purchasingRfqId`, e.g. `eq.{id}`.
curl --request GET \
--url 'https://rest.carbon.ms/purchasingRfqToSupplierQuote?purchasingRfqId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'{
"purchasingRfqId": "xyz789",
"supplierQuoteId": "xyz789",
"companyId": "xyz789"
}/purchasingRfqToSupplierQuoteCreate a purchasing rfq to supplier quote
Create a new purchasing rfq to supplier quote.
Body parameters
companyIdstringrequiredReferences company.id
curl --request POST \
--url https://rest.carbon.ms/purchasingRfqToSupplierQuote \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"companyId":"xyz789"}'{
"purchasingRfqId": "xyz789",
"supplierQuoteId": "xyz789",
"companyId": "xyz789"
}/purchasingRfqToSupplierQuoteUpdate a purchasing rfq to supplier quote
Update an existing purchasing rfq to supplier quote, matched on `purchasingRfqId`.
Body parameters
companyIdstringrequiredReferences company.id
curl --request PATCH \
--url 'https://rest.carbon.ms/purchasingRfqToSupplierQuote?purchasingRfqId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"companyId":"xyz789"}'{
"purchasingRfqId": "xyz789",
"supplierQuoteId": "xyz789",
"companyId": "xyz789"
}/purchasingRfqToSupplierQuoteDelete a purchasing rfq to supplier quote
Delete a purchasing rfq to supplier quote, matched on `purchasingRfqId`. Returns 204 No Content.
Query parameters
purchasingRfqIdstringThe `purchasingRfqId` of the purchasing rfq to supplier quote to delete, e.g. `eq.{id}`.
curl --request DELETE \
--url 'https://rest.carbon.ms/purchasingRfqToSupplierQuote?purchasingRfqId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'