## Deletes a pet

`client.pets.delete(numberpetID, RequestOptionsoptions?): void`

**delete** `/pet/{petId}`

delete a pet

### Parameters

- `petID: number`

### Example

```typescript
import RpTestDocs1 from 'rp-test-docs-1';

const client = new RpTestDocs1({
  apiKey: process.env['PETSTORE_API_KEY'], // This is the default and can be omitted
});

await client.pets.delete(0);
```
