Quote Operation Tool Step
The quote operation tool step resource.
/quoteOperationToolStepList quote operation tool steps
Retrieve a paginated list of quote operation tool steps. 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/quoteOperationToolStep?select=*&limit=10' \
--header 'Authorization: Bearer <api-key>'[
{
"quoteOperationToolId": "xyz789",
"quoteOperationStepId": "xyz789"
}
]/quoteOperationToolStepRetrieve a quote operation tool step
Fetch a single quote operation tool step by filtering on `quoteOperationToolId`.
Query parameters
quoteOperationToolIdstringMatch on the quote operation tool step's `quoteOperationToolId`, e.g. `eq.{id}`.
curl --request GET \
--url 'https://rest.carbon.ms/quoteOperationToolStep?quoteOperationToolId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'{
"quoteOperationToolId": "xyz789",
"quoteOperationStepId": "xyz789"
}/quoteOperationToolStepCreate a quote operation tool step
Create a new quote operation tool step.
curl --request POST \
--url https://rest.carbon.ms/quoteOperationToolStep \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"quoteOperationToolId":"xyz789"}'{
"quoteOperationToolId": "xyz789",
"quoteOperationStepId": "xyz789"
}/quoteOperationToolStepUpdate a quote operation tool step
Update an existing quote operation tool step, matched on `quoteOperationToolId`.
curl --request PATCH \
--url 'https://rest.carbon.ms/quoteOperationToolStep?quoteOperationToolId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>' \
--header 'Content-Type: application/json' \
--header 'Prefer: return=representation' \
--data '{"name":"Example"}'{
"quoteOperationToolId": "xyz789",
"quoteOperationStepId": "xyz789"
}/quoteOperationToolStepDelete a quote operation tool step
Delete a quote operation tool step, matched on `quoteOperationToolId`. Returns 204 No Content.
Query parameters
quoteOperationToolIdstringThe `quoteOperationToolId` of the quote operation tool step to delete, e.g. `eq.{id}`.
curl --request DELETE \
--url 'https://rest.carbon.ms/quoteOperationToolStep?quoteOperationToolId=eq.%7Bid%7D' \
--header 'Authorization: Bearer <api-key>'