func getAuthKeyID(ID string) (string, error) {
    authKeyID := os.Getenv(EnvKeyIDName)
    if len(authKeyID) > 0 {
        return authKeyID, nil
    }