-
Notifications
You must be signed in to change notification settings - Fork 0
/
employment_history.go
39 lines (32 loc) · 1.05 KB
/
employment_history.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 EmploymentHistoryList struct {
Items []EmploymentHistory `json:"items"`
ListResponse
}
type EmploymentHistoryListResponse struct {
Data EmploymentHistoryList `json:"data"`
}
// Get returns a list of [EmploymentHistory] resources of one employee
//
// Example:
//
// response, err := c.ListEmploymentHistories(context.TODO(), "90a34ef1-50e4-4930-a9d6-xxxx", "xxxxxx-yyyy", ListParams{})
// employmentHistories := response.Data.Items
func (c *Client) ListEmploymentHistories(ctx context.Context, oid string, eid string, hp ListParams) (*EmploymentHistoryListResponse, error) {
req, err := c.NewRequest(ctx, http.MethodGet, fmt.Sprintf("%s/api/v1/organisations/%s/employees/%s/employment_histories", c.APIBase, oid, eid), nil)
if err != nil {
return nil, err
}
q := req.URL.Query()
q.Add("page_index", hp.PageIndex)
q.Add("item_per_page", hp.ItemPerPage)
req.URL.RawQuery = q.Encode()
response := &EmploymentHistoryListResponse{}
err = c.SendWithAuth(req, response)
return response, err
}