2018-07-22 08:24:52 +00:00
|
|
|
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) {
|
2018-07-23 01:35:10 +00:00
|
|
|
req := itg.NewRequest("/organization_statuses", "GET", nil)
|
|
|
|
err := req.Do()
|
2018-07-22 08:24:52 +00:00
|
|
|
if err != nil {
|
2018-07-23 01:35:10 +00:00
|
|
|
return nil, fmt.Errorf("request failed for %s: %s", req.RestAction, err)
|
2018-07-22 08:24:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
organizationStatuses := &OrganizationStatusList{}
|
2018-07-23 01:35:10 +00:00
|
|
|
err = json.Unmarshal(req.Body, organizationStatuses)
|
2018-07-22 08:24:52 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("could not get organization types: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return organizationStatuses, nil
|
|
|
|
|
|
|
|
}
|