put https://{accountName}.{environment}.com.br/api/catalog/pvt/supplier/
Updates general information of an existing Supplier.
Request body has the following properties:
Attribute | Type | Description |
---|---|---|
Name | string | Supplier Name |
CorporateName | string | Supplier Corporate Name |
StateInscription | string | State Inscription |
Cnpj | string | Business ID |
Phone | string | Supplier Phone |
CellPhone | string | Supplier Cellphone |
CorportePhone | string | Supplier Corporate Phone |
string | Supplier email | |
IsActive | boolean | If Supplier is active or not |
Request body example:
{
"Name": "Supplier",
"CorporateName": "TopStore",
"StateInscription": "",
"Cnpj": "33304981001272",
"Phone": "3333333333",
"CellPhone": "4444444444",
"CorportePhone": "5555555555",
"Email": "[email protected]",
"IsActive": true
}
Response body has the following properties:
Attribute | Type | Description |
---|---|---|
Id | integer | Supplier ID |
Name | string | Supplier Name |
CorporateName | string | Supplier Corporate Name |
StateInscription | string | State Inscription |
Cnpj | string | Business ID |
Phone | string | Supplier Phone |
CellPhone | string | Supplier Cellphone |
CorportePhone | string | Supplier Corporate Phone |
string | Supplier email | |
IsActive | boolean | If Supplier is active or not |
Response body example:
{
"Id":1
"Name": "Supplier",
"CorporateName": "TopStore",
"StateInscription": "",
"Cnpj": "33304981001272",
"Phone": "3333333333",
"CellPhone": "4444444444",
"CorportePhone": "5555555555",
"Email": "[email protected]",
"IsActive": true
}