POST api/v1/sellers
Request Information
URI Parameters
None.
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": "19a16b46-3987-4366-9c87-f111d7573ec2",
"code": "sample string 1",
"name": "sample string 2",
"lastName": "sample string 3",
"urlImage": "sample string 4",
"isDeletable": true,
"isArchived": true,
"creationDate": "2026-01-30T17:48:39.7790063+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-30T17:48:39.7790063+00:00</CreationDate> <Id>19a16b46-3987-4366-9c87-f111d7573ec2</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.