diff --git a/get-records.go b/get-records.go index e7d159a..63754b0 100644 --- a/get-records.go +++ b/get-records.go @@ -29,7 +29,7 @@ func (t *Table) GetRecords() *GetRecordsConfig { // ReturnFields set returning field names func (grc *GetRecordsConfig) ReturnFields(fieldNames ...string) *GetRecordsConfig { for _, fieldName := range fieldNames { - grc.params.Add("fields", fieldName) + grc.params.Add("fields[]", fieldName) } return grc }