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