This repository was archived by the owner on Aug 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change
1
+ ## 1.2.1
2
+ * Applications API has moved from v3 to v4
3
+
1
4
## 1.2.0
2
5
* Added Messages API (new)
3
6
* Message API (V1) is now fully depricated
4
7
5
8
## 1.1.1
6
9
* Add optional parameter to support pagination in GetTrayByType
7
10
8
- # 1.1.0
11
+ ## 1.1.0
9
12
* Get Categories (V1) is now fully depricated
10
13
* Added new Activities API - Assign to specific engagement the list of activities
11
14
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ func New(c api.ApiClient) (a) {
38
38
39
39
// Get list of applications
40
40
func (r a ) GetList (params map [string ]string ) (* http.Response , []byte ) {
41
- return r .client .Get ("/hr/v3 /clients/applications" , params )
41
+ return r .client .Get ("/hr/v4 /clients/applications" , params )
42
42
}
43
43
44
44
// Get specific application
45
45
func (r a ) GetSpecific (reference string , params map [string ]string ) (* http.Response , []byte ) {
46
- return r .client .Get ("/hr/v3 /clients/applications/" + reference , params )
47
- }
46
+ return r .client .Get ("/hr/v4 /clients/applications/" + reference , params )
47
+ }
Original file line number Diff line number Diff line change @@ -38,10 +38,10 @@ func New(c api.ApiClient) (a) {
38
38
39
39
// Get list of applications
40
40
func (r a ) GetList (params map [string ]string ) (* http.Response , []byte ) {
41
- return r .client .Get ("/hr/v3 /contractors/applications" , params )
41
+ return r .client .Get ("/hr/v4 /contractors/applications" , params )
42
42
}
43
43
44
44
// Get specific application
45
45
func (r a ) GetSpecific (reference string ) (* http.Response , []byte ) {
46
- return r .client .Get ("/hr/v3 /contractors/applications/" + reference , nil )
47
- }
46
+ return r .client .Get ("/hr/v4 /contractors/applications/" + reference , nil )
47
+ }
You can’t perform that action at this time.
0 commit comments