52 lines
1.3 KiB
Go
52 lines
1.3 KiB
Go
package itglue
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
type OrganizationStatusData struct {
|
|
ID string `json:"id"`
|
|
Type string `json:"type"`
|
|
Attributes struct {
|
|
Name string `json:"name"`
|
|
CreatedAt time.Time `json:"created-at"`
|
|
UpdatedAt time.Time `json:"updated-at"`
|
|
Synced bool `json:"synced"`
|
|
} `json:"attributes"`
|
|
}
|
|
|
|
type OrganizationStatus struct {
|
|
Data struct{ OrganizationStatusData } `json:"data"`
|
|
Meta struct{ Metadata } `json:"metadata"`
|
|
Links struct{ Links } `json:"links"`
|
|
}
|
|
|
|
type OrganizationStatusList struct {
|
|
Data []struct{ OrganizationStatusData } `json:"data"`
|
|
Meta struct{ Metadata } `json:"metadata"`
|
|
Links struct{ Links } `json:"links"`
|
|
}
|
|
|
|
func (itg *ITGAPI) GetOrganizationStatuses() (*OrganizationStatusList, error) {
|
|
itgurl, err := itg.BuildURL("/organization_statuses")
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not build URL: %s", err)
|
|
}
|
|
body, err := itg.GetRequest(itgurl)
|
|
|
|
if err != nil {
|
|
return nil, fmt.Errorf("request failed: %s", err)
|
|
}
|
|
|
|
organizationStatuses := &OrganizationStatusList{}
|
|
err = json.Unmarshal(body, organizationStatuses)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not get organization types: %s", err)
|
|
}
|
|
|
|
return organizationStatuses, nil
|
|
|
|
}
|