API Module Domain searchDomainRequest
From Openprovider API documentation
(Difference between revisions)
| Line 3: | Line 3: | ||
|- style="background-color:#BBBBBB;" | |- style="background-color:#BBBBBB;" | ||
|'''Module''' | |'''Module''' | ||
| - | | | + | |domain |
|- style="background-color:#EEEEEE;" | |- style="background-color:#EEEEEE;" | ||
|'''Command name''' | |'''Command name''' | ||
Revision as of 04:07, 16 April 2010
Contents |
Module Domain > Search
| Module | domain |
| Command name | searchDomainRequest |
| Use | Returns a list of domain objects matching search criteria |
| Input |
|
| Output | Result set of domain details:
|
Examples
Using PHP class
$request = new OP_Request;
$request->setCommand('searchDomainRequest')
->setAuth(array('username' => 'username', 'password' => 'password'))
->setArgs(array(
'offset' => 50,
'limit' => 25,
'contactHandle' => 'AH009176-US',
'domainNamePattern' => 'openprovider'
));
Raw XML
to do