cURL
curl --request PUT \ --url https://staging-api.puppetvendors.com/v1/vendors/{vendorId}/address \ --header 'Content-Type: application/json' \ --header 'x-access-token: <api-key>' \ --data ' { "address1": "<string>", "address2": "<string>", "city": "<string>", "state": "<string>", "postalCode": "<string>", "country": "<string>" } '
Set or update a vendor’s business address
Documentation IndexFetch the complete documentation index at: https://dev.puppetvendors.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://dev.puppetvendors.com/llms.txt
Use this file to discover all available pages before exploring further.
{ "message": "Vendor address updated successfully.", "vendor": { ... } }
curl -X PUT "https://api.puppetvendors.com/v1/vendors/6157faecbebcf01bf49097d9/address" \ -H "Content-Type: application/json" \ -H "x-access-token: YOUR_JWT_TOKEN" \ -d '{ "address1": "123 Market Street", "city": "London", "postalCode": "EC1A 1BB", "country": "United Kingdom" }'
Was this page helpful?