-
Notifications
You must be signed in to change notification settings - Fork 0
/
bank_account.go
39 lines (32 loc) · 1003 Bytes
/
bank_account.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package employmenthero
import (
"context"
"fmt"
"net/http"
)
type BankAccountList struct {
Items []BankAccount `json:"items"`
ListResponse
}
type BankAccountListReponse struct {
Data BankAccountList `json:"data"`
}
// Get returns a list of [BankAccount] resources of one employee
//
// Example:
//
// response, err := c.ListBankAccounts(context.TODO(), "90a34ef1-50e4-4930-a9d6-xxxx", "XXX-YY-ZZZ", ListParams{})
// bankAccounts := response.Data.Items
func (c *Client) ListBankAccounts(ctx context.Context, oid string, eid string, ep ListParams) (*BankAccountListReponse, error) {
req, err := c.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/api/v1/organisations/%s/employees/%s/bank_accounts", c.APIBase, oid, eid), nil)
if err != nil {
return nil, err
}
q := req.URL.Query()
q.Add("page_index", ep.PageIndex)
q.Add("item_per_page", ep.ItemPerPage)
req.URL.RawQuery = q.Encode()
response := &BankAccountListReponse{}
err = c.SendWithAuth(req, response)
return response, err
}