You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
464 B
27 lines
464 B
package apiaccess
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
// GetFull gets full current endpoints dictionary
|
|
func (a APIAccess) GetFull(ctx context.Context) (*APIsEndpoints, error) {
|
|
url := "/cloudbroker/apiaccess/getFull"
|
|
|
|
info := APIsEndpoints{}
|
|
|
|
res, err := a.client.DecortApiCall(ctx, http.MethodPost, url, nil)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
err = json.Unmarshal(res, &info)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &info, nil
|
|
}
|