diff --git a/audit.go b/audit.go index 698af844f..041ffd77a 100644 --- a/audit.go +++ b/audit.go @@ -111,11 +111,9 @@ func (api *Client) GetAuditLogs(params AuditLogParameters) (entries []AuditEntry // GetAuditLogsContext retrieves a page of audit entries according to the parameters given with a custom context func (api *Client) GetAuditLogsContext(ctx context.Context, params AuditLogParameters) (entries []AuditEntry, nextCursor string, err error) { - values := url.Values{ - "token": {api.token}, - } + values := url.Values{} if params.Limit != 0 { - values.Add("count", strconv.Itoa(params.Limit)) + values.Add("limit", strconv.Itoa(params.Limit)) } if params.Oldest != 0 { values.Add("oldest", strconv.Itoa(params.Oldest))