Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.28 KB

DomainOwnershipsApi.md

File metadata and controls

52 lines (35 loc) · 1.28 KB

Fastly\Api\DomainOwnershipsApi

$apiInstance = new Fastly\Api\DomainOwnershipsApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client(),
    $config
);

Methods

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
listDomainOwnerships() GET /domain-ownerships List domain-ownerships

listDomainOwnerships()

listDomainOwnerships($options): \Fastly\Model\InlineResponse2002 // List domain-ownerships

List all domain-ownerships.

Example

    
try {
    $result = $apiInstance->listDomainOwnerships($options);
} catch (Exception $e) {
    echo 'Exception when calling DomainOwnershipsApi->listDomainOwnerships: ', $e->getMessage(), PHP_EOL;
}

Options

Note: the input parameter is an associative array with the keys listed below.

This endpoint does not need any parameters.

Return type

\Fastly\Model\InlineResponse2002

[Back to top] [Back to API list] [Back to README]