* Create a signed SAPI request
(path: string, data: Dict = {}, method: HttpMethod = 'GET', noDataInSignature = false)
| 727 | * Create a signed SAPI request |
| 728 | */ |
| 729 | async privateSapiRequest(path: string, data: Dict = {}, method: HttpMethod = 'GET', noDataInSignature = false) { |
| 730 | return await this.signedRequest/**/(this.getSapiUrl() + path, data, method, noDataInSignature); |
| 731 | } |
| 732 | |
| 733 | /** |
| 734 | * Create a signed http request |
no test coverage detected