Updated changeValidationEmail (markdown)

master
Victor Aleksejevs 2018-08-10 20:16:25 +03:00
parent 08d2f6850a
commit 082e99c416
1 changed files with 29 additions and 30 deletions

@ -1,14 +1,14 @@
URL: /orders/ssl/change_validation_email/<order_id><br/> URL: /orders/ssl/change_validation_email/<order_id><br/>
Request type: POST Request type: POST
**Overview** ### Overview
This method can be used for one of the following purposes: 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 * In case if email DCV method is already used this method can change the current DCV email
address. address.
* Another usage option is changing of the current DCV method. * Another usage option is changing of the current DCV method.
**Request parameters** ### Request parameters
* auth_key - authentication key returned by “auth” method * auth_key - authentication key returned by :link:[auth](https://github.com/gogetssl/api/wiki/Auth) method
* order_id - unique order ID * order_id - unique order ID
* approver_email in case if email DCV method is supposed to be used, provide an approver * 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 email address in this field. In case if email DCV method is already used, you can change current
@ -25,34 +25,33 @@ respectively:
* approver_email Approver email address * approver_email Approver email address
**HTTP:** **HTTP:**
[validation] => Array<br/> ```json
&nbsp;&nbsp;(<br/> {
&nbsp;&nbsp;&nbsp;&nbsp;[http] => Array<br/> "http": {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(<br/> "link": "http:\/\/domain.tld\/.well-known\/pki-validation\/37D0C93EE263FF9EEEA799215A9C3225.txt",
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[link] => http://example.com/851BF1CD669B199EB7C45666FF9784CA.txt<br/> "filename": "37D0C93EE263FF9EEEA799215A9C3225.txt",
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[filename] => 851BF1CD669B199EB7C45666FF9784CA.txt<br/> "content": "D30C576BF9EB30A75211CB799848EE5CABFCE3D8EE13212A57C9B7E42EF9BAA2\r\nCOMODOCA.COM\r\nt0827792001533920169"
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[content] => C64D68CACBDFEBCB924B00D008820C0CA800627Acomodoca.com<br/> }
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<br/> }
&nbsp;&nbsp;)<br/> ```
**HTTPS:** **HTTPS:**
[validation] => Array<br/> ```json
&nbsp;&nbsp;(<br/> {
&nbsp;&nbsp;&nbsp;&nbsp;[http] => Array<br/> "https": {
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(<br/> "link": "http:\/\/domain.tld\/.well-known\/pki-validation\/37D0C93EE263FF9EEEA799215A9C3225.txt",
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[link] => https://example.com/851BF1CD669B199EB7C45666FF9784CA.txt<br/> "filename": "37D0C93EE263FF9EEEA799215A9C3225.txt",
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[filename] => 851BF1CD669B199EB7C45666FF9784CA.txt<br/> "content": "D30C576BF9EB30A75211CB799848EE5CABFCE3D8EE13212A57C9B7E42EF9BAA2\r\nCOMODOCA.COM\r\nt0827792001533920169"
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[content] => C64D68CACBDFEBCB924B00D008820C0CA800627Acomodoca.com<br/> }
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;)<br/> }
&nbsp;&nbsp;)<br/>
```
**DNS:** **DNS:**
```json
[validation] => Array {
( "dns": {
[dns] => Array "record": "_37D0C93EE263FF9EEEA799215A9C3225.demo.gogetssl.com CNAME
( d30c576bf9eb30a75211cb799848ee5c.abfce3d8ee13212a57c9b7e42ef9baa2.t0837512001533895392.comodoca.com"
[record] => 851BF1CD669B199EB7C45666FF9784CA.example.com. CNAME }
C64D68CACBDFEBCB924B00D008820C0CA800627A.comodoca.com. }
) ```
)