501 Argument Exception fr...
501 Argument Exception from API call to add DNS entry
- Accueil
- Espace Client
- Community Forum
- General Discussion
- Developer Discussion
- 501 Argument Exception from API call to add DNS entry
- Community Forum
- 501 Argument Exception from API call to add DNS entry
Topic: 501 Argument Exception from API call to add DNS entry
I'm trying to add a DNS entry using the API call https://api.dynu.com/v2/dns. I'm doing this from a powershell with the following code:
$Form = @{
name = 'qwikfoto3.ddnsfree.com'
group = ''
ipv4Address = $myip
ipv6Address = ''
ttl = '90'
ipv4 = $true
ipv6 = $false
ipv4WildcardAlias = $true
ipv6WildcardAlias = $false
allowZoneTransfer = $false
dnssec = $false
}
$Response = Invoke-WebRequest -Headers $headers -Uri https://api.dynu.com/v2/dns -Body $Form -Method Post -UseBasicParsing
A 501 Argument Exception suggests that there's something wrong with one of the arguments that I'm passing.
Can anyone find the problem here?
Thanks,
$Form = @{
name = 'qwikfoto3.ddnsfree.com'
group = ''
ipv4Address = $myip
ipv6Address = ''
ttl = '90'
ipv4 = $true
ipv6 = $false
ipv4WildcardAlias = $true
ipv6WildcardAlias = $false
allowZoneTransfer = $false
dnssec = $false
}
$Response = Invoke-WebRequest -Headers $headers -Uri https://api.dynu.com/v2/dns -Body $Form -Method Post -UseBasicParsing
A 501 Argument Exception suggests that there's something wrong with one of the arguments that I'm passing.
Can anyone find the problem here?
Thanks,
Reply with quote | Report
Author | Topic: 501 Argument Exception from API call to add DNS entry |
---|---|
pcameron60 Joined: 18/02/2019 |
501 Argument Exception from API call to add DNS entry jeudi 28 janvier 2021 19:43
I'm trying to add a DNS entry using the API call https://api.dynu.com/v2/dns. I'm doing this from a powershell with the following code:
$Form = @{ name = 'qwikfoto3.ddnsfree.com' group = '' ipv4Address = $myip ipv6Address = '' ttl = '90' ipv4 = $true ipv6 = $false ipv4WildcardAlias = $true ipv6WildcardAlias = $false allowZoneTransfer = $false dnssec = $false } $Response = Invoke-WebRequest -Headers $headers -Uri https://api.dynu.com/v2/dns -Body $Form -Method Post -UseBasicParsing A 501 Argument Exception suggests that there's something wrong with one of the arguments that I'm passing. Can anyone find the problem here? Thanks, |
It is currently samedi 11 janvier 2025 09:31 US Mountain Standard Time
samedi 11 janvier 2025 09:31