## Delete `client.pets.delete(numberpetID, RequestOptionsoptions?): void` **delete** `/pets/{petId}` Deletes a pet. ### Parameters - `petID: number` ### Example ```typescript import Barkend from 'barkend'; const client = new Barkend({ bearerToken: process.env['BARKEND_BEARER_TOKEN'], // This is the default and can be omitted }); await client.pets.delete(0); ```