Method Operation Tool Step

The method operation tool step resource.

Basehttps://rest.carbon.ms/methodOperationToolStep
GET/methodOperationToolStep

List method operation tool steps

Retrieve a paginated list of method operation tool steps. Filter, order, and select columns with PostgREST query parameters.

Query parameters

selectstring

Comma-separated columns to return. Defaults to all.

orderstring

Column to sort by, e.g. `createdAt.desc`.

limitinteger

Maximum rows to return.

offsetinteger

Rows to skip, for pagination.

GEThttps://rest.carbon.ms/methodOperationToolStep
curl --request GET \
  --url 'https://rest.carbon.ms/methodOperationToolStep?select=*&limit=10' \
  --header 'Authorization: Bearer <api-key>'
Response
[
  {
    "methodOperationToolId": "xyz789",
    "methodOperationStepId": "xyz789"
  }
]
GET/methodOperationToolStep

Retrieve a method operation tool step

Fetch a single method operation tool step by filtering on `methodOperationToolId`.

Query parameters

methodOperationToolIdstring

Match on the method operation tool step's `methodOperationToolId`, e.g. `eq.{id}`.

GEThttps://rest.carbon.ms/methodOperationToolStep
curl --request GET \
  --url 'https://rest.carbon.ms/methodOperationToolStep?methodOperationToolId=eq.%7Bid%7D' \
  --header 'Authorization: Bearer <api-key>'
Response
{
  "methodOperationToolId": "xyz789",
  "methodOperationStepId": "xyz789"
}
POST/methodOperationToolStep

Create a method operation tool step

Create a new method operation tool step.

POSThttps://rest.carbon.ms/methodOperationToolStep
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"}'
Response
{
  "methodOperationToolId": "xyz789",
  "methodOperationStepId": "xyz789"
}
PATCH/methodOperationToolStep

Update a method operation tool step

Update an existing method operation tool step, matched on `methodOperationToolId`.

PATCHhttps://rest.carbon.ms/methodOperationToolStep
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"}'
Response
{
  "methodOperationToolId": "xyz789",
  "methodOperationStepId": "xyz789"
}
DELETE/methodOperationToolStep

Delete a method operation tool step

Delete a method operation tool step, matched on `methodOperationToolId`. Returns 204 No Content.

Query parameters

methodOperationToolIdstring

The `methodOperationToolId` of the method operation tool step to delete, e.g. `eq.{id}`.

DELETEhttps://rest.carbon.ms/methodOperationToolStep
curl --request DELETE \
  --url 'https://rest.carbon.ms/methodOperationToolStep?methodOperationToolId=eq.%7Bid%7D' \
  --header 'Authorization: Bearer <api-key>'
204 No Content