Hi,
I'm trying to update the contact information of a domain via the API.
my request is like below :
curl -X PATCH -v -H 'Authorization: sso-key <KEY>' -H 'Content-Type: application/json' "https://api.godaddy.com/v1/domains/MYDOMAIN.COM/contacts" -d \ '[{"DomainContacts":"{ "contactRegistrant": { "nameFirst": "Domain", "nameLast": "Admin", "organization": "Company Inc.", "email": "datacentersupport@company.com", "phone": "1.1234567891", "fax": " ", "addressMailing": { "address1": "195 Broadway", "address2": "", "city": "New York", "state": "New York", "postalCode": "10007", "country": "US" } } } }]'
but i got this error :
INVALID_BODY: Request body doesn't fulfill schema, see details in `fields`
NB: the body of the request showed above is transformed to be a json object of one line.