slacker775/godaddy-domain-api

1.0.2 2020-06-15 18:18 UTC

This package is auto-updated.

Last update: 2024-03-16 02:40:36 UTC


README

This is a library to access GoDaddy's domain registration/management API via PHP. This library uses the published Swagger file to auto-generate the client using the Jane libraries from https://github.com/janephp/janephp

use GoDaddy\Domain\ClientFactory;

$apiKey = 'ABCD';
$apiSecret = '1234';

$client = ClientFactory::create($apiKey, $apiSecret);

$domains = $client->listDomains();
dump($domains);