File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change
1
+ 2.2.1
2
+
3
+ - enable http put requests
4
+
1
5
2.2.0
2
6
3
7
- re-brand Auto Verify to App Verify and refactor associated names
Original file line number Diff line number Diff line change @@ -165,6 +165,20 @@ function get (...$args) {
165
165
return $ this ->execute ("GET " , ...$ args );
166
166
}
167
167
168
+ /**
169
+ * Generic TeleSign REST API PUT handler
170
+ *
171
+ * @param string $resource The partial resource URI to perform the request against
172
+ * @param array $fields Query params to perform the DELETE request with
173
+ * @param string $date The date and time of the request
174
+ * @param string $nonce A unique cryptographic nonce for the request
175
+ *
176
+ * @return \telesign\sdk\rest\Response The RestClient Response object
177
+ */
178
+ function put (...$ args ) {
179
+ return $ this ->execute ("PUT " , ...$ args );
180
+ }
181
+
168
182
/**
169
183
* Generic TeleSign REST API DELETE handler
170
184
*
You can’t perform that action at this time.
0 commit comments