Updated changeValidationEmail (markdown)

master
Victor Aleksejevs 2018-08-10 15:28:07 +03:00
parent 561a796741
commit 367efdffdc
1 changed files with 54 additions and 1 deletions

@ -1 +1,54 @@
fgh
URL: /orders/ssl/change_validation_email/<order_id>
Request type: POST
Overview
This method can be used for one of the following purposes:
 In case if email DCV method is already used this method can change the current DCV email
address.
 Another usage option is changing of the current DCV method.
Request parameters
 auth_key - authentication key returned by “auth” method
 order_id - unique order ID
 approver_email in case if email DCV method is supposed to be used, provide an approver
email address in this field. In case if email DCV method is already used, you can change current
approver email address by providing another address in this field. In case of non-email DCV
method please specified a desired method in this field using one of the following values: 'http',
'https', 'dns'.
Response
If no errors in request following parameters will be returned for each of the DCV methods
respectively:
E-mail:
 dcv_method 'email'
 approver_email Approver email address
**HTTP:**
[validation] => Array<br/>
&nbsp;&nbsp;(<br/>
&nbsp;&nbsp;&nbsp;&nbsp;[http] => Array<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[link] => http://example.com/851BF1CD669B199EB7C45666FF9784CA.txt<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[filename] => 851BF1CD669B199EB7C45666FF9784CA.txt<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[content] => C64D68CACBDFEBCB924B00D008820C0CA800627Acomodoca.com<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<br/>
&nbsp;&nbsp;)<br/>
**HTTPS:**
[validation] => Array<br/>
&nbsp;&nbsp;(<br/>
&nbsp;&nbsp;&nbsp;&nbsp;[http] => Array<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[link] => https://example.com/851BF1CD669B199EB7C45666FF9784CA.txt<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[filename] => 851BF1CD669B199EB7C45666FF9784CA.txt<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[content] => C64D68CACBDFEBCB924B00D008820C0CA800627Acomodoca.com<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<br/>
&nbsp;&nbsp;)<br/>
**DNS:**
[validation] => Array
(
[dns] => Array
(
[record] => 851BF1CD669B199EB7C45666FF9784CA.example.com. CNAME
C64D68CACBDFEBCB924B00D008820C0CA800627A.comodoca.com.
)
)