Update vendor address
curl --request PUT \
--url https://production-api.puppetvendors.com/vendors/{vendorId}/address \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "New York",
"state": "NY",
"country": "US",
"zip": "10001",
"phone": "+1-555-123-4567"
}
'import requests
url = "https://production-api.puppetvendors.com/vendors/{vendorId}/address"
payload = {
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "New York",
"state": "NY",
"country": "US",
"zip": "10001",
"phone": "+1-555-123-4567"
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
address1: '123 Main Street',
address2: 'Suite 100',
city: 'New York',
state: 'NY',
country: 'US',
zip: '10001',
phone: '+1-555-123-4567'
})
};
fetch('https://production-api.puppetvendors.com/vendors/{vendorId}/address', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.puppetvendors.com/vendors/{vendorId}/address",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'address1' => '123 Main Street',
'address2' => 'Suite 100',
'city' => 'New York',
'state' => 'NY',
'country' => 'US',
'zip' => '10001',
'phone' => '+1-555-123-4567'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://production-api.puppetvendors.com/vendors/{vendorId}/address"
payload := strings.NewReader("{\n \"address1\": \"123 Main Street\",\n \"address2\": \"Suite 100\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"country\": \"US\",\n \"zip\": \"10001\",\n \"phone\": \"+1-555-123-4567\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://production-api.puppetvendors.com/vendors/{vendorId}/address")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"address1\": \"123 Main Street\",\n \"address2\": \"Suite 100\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"country\": \"US\",\n \"zip\": \"10001\",\n \"phone\": \"+1-555-123-4567\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.puppetvendors.com/vendors/{vendorId}/address")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address1\": \"123 Main Street\",\n \"address2\": \"Suite 100\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"country\": \"US\",\n \"zip\": \"10001\",\n \"phone\": \"+1-555-123-4567\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "New York",
"state": "NY",
"country": "US",
"zip": "10001",
"phone": "+1-555-123-4567"
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}Vendors
Update vendor address
Update vendor address fields. Merchant scope only.
PUT
/
vendors
/
{vendorId}
/
address
Update vendor address
curl --request PUT \
--url https://production-api.puppetvendors.com/vendors/{vendorId}/address \
--header 'Content-Type: application/json' \
--header 'x-access-token: <api-key>' \
--data '
{
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "New York",
"state": "NY",
"country": "US",
"zip": "10001",
"phone": "+1-555-123-4567"
}
'import requests
url = "https://production-api.puppetvendors.com/vendors/{vendorId}/address"
payload = {
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "New York",
"state": "NY",
"country": "US",
"zip": "10001",
"phone": "+1-555-123-4567"
}
headers = {
"x-access-token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {'x-access-token': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
address1: '123 Main Street',
address2: 'Suite 100',
city: 'New York',
state: 'NY',
country: 'US',
zip: '10001',
phone: '+1-555-123-4567'
})
};
fetch('https://production-api.puppetvendors.com/vendors/{vendorId}/address', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://production-api.puppetvendors.com/vendors/{vendorId}/address",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'address1' => '123 Main Street',
'address2' => 'Suite 100',
'city' => 'New York',
'state' => 'NY',
'country' => 'US',
'zip' => '10001',
'phone' => '+1-555-123-4567'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-access-token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://production-api.puppetvendors.com/vendors/{vendorId}/address"
payload := strings.NewReader("{\n \"address1\": \"123 Main Street\",\n \"address2\": \"Suite 100\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"country\": \"US\",\n \"zip\": \"10001\",\n \"phone\": \"+1-555-123-4567\"\n}")
req, _ := http.NewRequest("PUT", url, payload)
req.Header.Add("x-access-token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.put("https://production-api.puppetvendors.com/vendors/{vendorId}/address")
.header("x-access-token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"address1\": \"123 Main Street\",\n \"address2\": \"Suite 100\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"country\": \"US\",\n \"zip\": \"10001\",\n \"phone\": \"+1-555-123-4567\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.puppetvendors.com/vendors/{vendorId}/address")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["x-access-token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"address1\": \"123 Main Street\",\n \"address2\": \"Suite 100\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"country\": \"US\",\n \"zip\": \"10001\",\n \"phone\": \"+1-555-123-4567\"\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"address1": "123 Main Street",
"address2": "Suite 100",
"city": "New York",
"state": "NY",
"country": "US",
"zip": "10001",
"phone": "+1-555-123-4567"
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}{
"success": false,
"error": {
"message": "Resource not found",
"code": "NOT_FOUND",
"errorId": "err_1783365360839_j281w7b",
"details": {}
}
}Authorizations
JWT minted from a merchant API key (mk_live_…) by POST /authenticate. Send the token value directly, with no "Bearer" prefix. Tokens last 14 days and can be renewed at POST /refresh-token; revoking the key refuses the next request made with any token minted from it.
Path Parameters
Vendor ObjectId
Body
application/json
Was this page helpful?