Skip to content

Commit 4493478

Browse files
committed
updates
1 parent 22e7d90 commit 4493478

7 files changed

Lines changed: 10 additions & 10 deletions

File tree

data/functions/api_api_buy_mail.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
"name": "sid",
1212
"type": "string",
1313
"description": "the *Session ID* you get from the [login](#login) call",
14-
"example": "5732b90b93a187dde82527c07ffac6d7"
14+
"example": "c84e7206759d92b92483e7f4869d80ce"
1515
},
1616
"coupon": {
1717
"name": "coupon",
1818
"type": "string",
19-
"description": "",
19+
"description": "coupon name",
2020
"example": ""
2121
}
2222
},
@@ -57,7 +57,7 @@
5757
}
5858
]
5959
},
60-
"input_comment": "* @param sid string the *Session ID* you get from the [login](#login) call\n* @param coupon string \n",
60+
"input_comment": "* @param sid string the *Session ID* you get from the [login](#login) call\n* @param coupon string coupon name\n",
6161
"output_comment": "",
6262
"use_sid": true,
6363
"hide_comment": true

data/json/api_api_buy_mail.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@
66
"name": "sid",
77
"type": "string",
88
"description": "the *Session ID* you get from the [login](#login) call",
9-
"example": "5732b90b93a187dde82527c07ffac6d7"
9+
"example": "c84e7206759d92b92483e7f4869d80ce"
1010
},
1111
"coupon": {
1212
"name": "coupon",
1313
"type": "string",
14-
"description": "",
14+
"description": "coupon name",
1515
"example": ""
1616
}
1717
},

data/md/_api_api_buy_mail.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ This call takes the following parameters:
102102
Parameter|Type|Description
103103
---------|----|-----------
104104
sid|string|the *Session ID* you get from the [login](#login) call
105-
coupon|string|
105+
coupon|string|coupon name
106106

107107

108108
### Response

perl/api_api_buy_mail.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# api_api_buy_mail - (c)2015 by detain@interserver.net for the MyAdmin API
33
# Places an email order
44
# @param sid string the *Session ID* you get from the [login](#login) call
5-
# @param coupon string
5+
# @param coupon string coupon name
66
use SOAP::Lite;
77

88
$username = $ARGV[0];

php/api_api_buy_mail.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/** api_api_buy_mail - (c)2015 detain@interserver.net InterServer Hosting
33
* Places an email order
44
* @param sid string the *Session ID* you get from the [login](#login) call
5-
* @param coupon string
5+
* @param coupon string coupon name
66
*/
77
ini_set("soap.wsdl_cache_enabled", "0");
88
$username = $_SERVER['argv'][1];

python/api_api_buy_mail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Places an email order
77
#
88
# @param sid string the *Session ID* you get from the [login](#login) call
9-
# @param coupon string
9+
# @param coupon string coupon name
1010
#
1111
from suds.client import Client
1212
client = Client("https://my.interserver.net/api.php?wsdl")

ruby/api_api_buy_mail.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Places an email order
77
#
88
# @param sid string the *Session ID* you get from the [login](#login) call
9-
# @param coupon string
9+
# @param coupon string coupon name
1010
#
1111
require 'savon'
1212

0 commit comments

Comments
 (0)