Description
Domain .ID required prerequisites documents to be uploaded before it can be active. SRS-X provides an interface to upload documents for domain .ID orders.
This function will generate unique URL for uploading the documents.
Note: The generated link will be available for 10 minutes only. If the link has expired, please kindly regenerate the link.
Query
domain/documenturl
List Variable
| Name | Data Type | Required/Optional | Description |
|---|---|---|---|
| domain | String(63) | Required | Domain name |
| api_id | Integer(11) | Required | Unique domain ID |
Example
$post["username"] = 'apiusername';
$post["password"] = hash('sha256','apipassword');
$post["domain"] = 'domainid.com'
$post["api_id"] = 1;
$url = 'http://[reseller url]/api/domain/documenturl';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $apiurl);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 100);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($post));
$response = curl_exec($ch);
curl_close($ch);
Example Response
Succeed:
</pre> <?xml version="1.0" encoding="UTF-8"?> <epp> <result> <resultCode>1000</resultCode> <resultMsg>Command Complete Successfully</resultMsg> </result> <resultData> <url>http://srb3.srs.satusite.net/document/id/kjahsdkfhaskfhkasf</url> </resultData> </epp> <pre>
Failed:
</pre> <?xml version="1.0" encoding="UTF-8"?> <epp> <result> <resultCode/> <resultMsg>Command Failed</resultMsg> </result> </epp> <pre>