DirkGroenen\Pinterest\Endpoints\Pins::delete PHP Method

delete() public method

Delete a pin
public delete ( string $pin_id ) : boolean
$pin_id string
return boolean
    public function delete($pin_id)
    {
        $this->request->delete(sprintf("pins/%s", $pin_id));
        return true;
    }