PUT api/v1/sellers/{code}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
Required |
Body Parameters
SellerDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Code | string |
None. |
|
| Name | string |
None. |
|
| LastName | string |
None. |
|
| UrlImage | string |
None. |
|
| IsDeletable | boolean |
None. |
|
| IsArchived | boolean |
None. |
|
| CreationDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"id": "9abd8ac7-8f61-4741-aece-171213fe8fa2",
"code": "sample string 1",
"name": "sample string 2",
"lastName": "sample string 3",
"urlImage": "sample string 4",
"isDeletable": true,
"isArchived": true,
"creationDate": "2026-01-27T11:38:22.0596278+00:00"
}
application/xml, text/xml
Sample:
<SellerDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Domain.Dtos"> <Code>sample string 1</Code> <CreationDate>2026-01-27T11:38:22.0596278+00:00</CreationDate> <Id>9abd8ac7-8f61-4741-aece-171213fe8fa2</Id> <IsArchived>true</IsArchived> <IsDeletable>true</IsDeletable> <LastName>sample string 3</LastName> <Name>sample string 2</Name> <UrlImage>sample string 4</UrlImage> </SellerDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.