Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/vendor/resend/resend-php/src/Service/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/vendor/resend/resend-php/src/Service/ApiKey.php

<?php

namespace Resend\Service;

use Resend\ValueObjects\Transporter\Payload;

class ApiKey extends Service
{
    /**
     * Create a new API key.
     *
     * @see https://resend.com/docs/api-reference/api-keys/create-api-key#body-parameters
     */
    public function create(array $parameters): \Resend\ApiKey
    {
        $payload = Payload::create('api-keys', $parameters);

        $result = $this->transporter->request($payload);

        return $this->createResource('api-keys', $result);
    }

    /**
     * List all API keys.
     *
     * @return \Resend\Collection<\Resend\ApiKey>
     *
     * @see https://resend.com/docs/api-reference/api-keys/list-api-keys
     */
    public function list(): \Resend\Collection
    {
        $payload = Payload::list('api-keys');

        $result = $this->transporter->request($payload);

        return $this->createResource('api-keys', $result);
    }

    /**
     * Remove an API key with the given ID.
     *
     * @see https://resend.com/docs/api-reference/api-keys/delete-api-key#path-parameters
     */
    public function remove(string $id): \Resend\ApiKey
    {
        $payload = Payload::delete('api-keys', $id);

        $result = $this->transporter->request($payload);

        return $this->createResource('api-keys', $result);
    }
}