diff --git a/apiclient/apiclient.go b/apiclient/apiclient.go index 95992b8..081d95e 100644 --- a/apiclient/apiclient.go +++ b/apiclient/apiclient.go @@ -15,5 +15,5 @@ type APIClient struct { func (a *APIClient) Scan(membreID string) (response apiresponse.ScanPOST, err error) { //TODO implement api key - return response, a.Voki.Unmarshal(http.MethodPost, fmt.Sprintf("/v0/scan/%s", membreID), nil, false, &response) + return response, a.Voki.Unmarshal(http.MethodPost, fmt.Sprintf("/v0/scan/%s", membreID), nil, true, &response) }