我在使用modifyContact调用时遇到问题。每次我尝试执行它时,我都会收到错误:
{
"error": "Internal Error",
"code": "SoftLayer_Exception_Public"
}
网址
https://sldn.softlayer.com/reference/services/SoftLayer_Dns_Domain_Registration/modifyContact/
卷曲请求
curl --location --request POST 'https://api.softlayer.com/rest/v3.1/SoftLayer_Dns_Domain_Registration/modifyContact.json' \
--header 'InitParameters: 610994' \
--header 'Authorization: Basic <Token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"contact": {
"id": "610994",
"address1": "11501 Burnet Rd",
"address2": "TX",
"city": "Austin",
"country": "US",
"email": "softlayer-test@test.amsdfw.us",
"firstName": "Jeroen",
"lastName": "Schaftenaar",
"organizationName": "SoftLayer Internal - IBM Interface Development",
"phone": "+1.2142142145",
"postalCode": "78758-3420",
"state": "TX",
"type": "owner"
}
}