curl --request PATCH \
--url https://app.polygonone.com/api/suppliers/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"fields": {
"name": "<string>",
"contactName": "<string>",
"country": "<string>",
"email": "jsmith@example.com",
"address": {
"street": "<string>",
"postalCode": "<string>",
"city": "<string>",
"additional": "<string>",
"validated": true,
"latitude": 123,
"longitude": 123
},
"externalSupplierId": "<string>"
},
"articleIds": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
]
}
'