Skip to main content
POST
/
v1.0
/
distributor
/
update
Update Distributor details
curl --request POST \
  --url https://api.example.com/v1.0/distributor/update \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "DistributorId": "<string>",
  "DistributorName": "<string>",
  "BillingAddress": {
    "Street1": "<string>",
    "Street2": "<string>",
    "City": "<string>",
    "State": "<string>",
    "Zip": "<string>",
    "Country": "<string>"
  },
  "MailingAddress": {
    "Street1": "<string>",
    "Street2": "<string>",
    "City": "<string>",
    "State": "<string>",
    "Zip": "<string>",
    "Country": "<string>"
  }
}
'

Authorizations

Authorization
string
header
required

JWT Authorization header using the Bearer scheme. Obtain token from /v1.0/OAuth2/tokens endpoint.

Body

Distributor object

DistributorId
string | null
DistributorName
string | null
BillingAddress
object
MailingAddress
object

Response

200

Success