POST api/v1/sellers
Request Information
URI Parameters
None.
Body Parameters
SellerDtoName | 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": "e09027c1-24ca-44b5-b967-195bdc783215", "code": "sample string 1", "name": "sample string 2", "lastName": "sample string 3", "urlImage": "sample string 4", "isDeletable": true, "isArchived": true, "creationDate": "2025-08-31T08:55:00.6762542+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>2025-08-31T08:55:00.6762542+00:00</CreationDate> <Id>e09027c1-24ca-44b5-b967-195bdc783215</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.