Actions17
Overview
This node deletes a pet from the Petstore API by its unique identifier. It is useful in scenarios where you need to remove a pet record from the system, such as managing pet data cleanup or correcting erroneous entries. For example, if a pet is no longer available or was added by mistake, this node can be used to delete that pet by specifying its ID.
Properties
| Name | Meaning |
|---|---|
| Api Key | API key used for authenticating requests to the Petstore API. |
| Pet Id | The unique identifier of the pet to be deleted from the Petstore. |
Output
JSON
status- HTTP response status indicating the result of the delete operation.data- Response data from the API, typically empty or confirmation of deletion.
Dependencies
- Petstore API (https://petstore3.swagger.io/api/v3)
Troubleshooting
- Ensure the provided API key is valid and has permissions to delete pets; invalid or missing API key will cause authentication errors.
- Verify that the Pet Id exists; attempting to delete a non-existent pet will result in an error response from the API.
- Check network connectivity to the Petstore API endpoint to avoid request failures.
Links
- Petstore API Documentation - Official API documentation for the Petstore service, including endpoints and authentication details.