cURL
curl --request PUT \ --url https://staging-api.puppetvendors.com/vendors/me/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>" } '
Update the authenticated vendor’s own 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.
{ "success": true, "data": { /* updated address */ } }
curl -X PUT "https://staging-api.puppetvendors.com/vendors/me/address" \ -H "x-access-token: YOUR_VENDOR_JWT" \ -H "Content-Type: application/json" \ -d '{ "address1": "456 Oak Ave", "city": "Austin", "state": "TX", "postalCode": "78702", "country": "US" }'
Was this page helpful?