We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When calling the RegisterDomain function, I faced the following error:
RegisterDomain
json: cannot unmarshal string into Go struct field ErrorResponse.errors of type []string
It seems that the type for ErrorResponse.AttributeErrors should be a map[string]string instead of the current map[string][]string.
ErrorResponse.AttributeErrors
map[string]string
map[string][]string
Even though the documentation states that the current type is valid: https://developer.dnsimple.com/v2/#errors So, that's possibly an API error?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When calling the
RegisterDomain
function, I faced the following error:It seems that the type for
ErrorResponse.AttributeErrors
should be amap[string]string
instead of the currentmap[string][]string
.Even though the documentation states that the current type is valid: https://developer.dnsimple.com/v2/#errors
So, that's possibly an API error?
The text was updated successfully, but these errors were encountered: