POST api/DocumentoAPI/Post
POST
Request Information
URI Parameters
None.
Body Parameters
Documento| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| IdOwner | globally unique identifier |
None. |
|
| IdLote | string |
None. |
|
| FileType | string |
None. |
|
| FileName | string |
None. |
|
| FileData | string |
None. |
|
| FileSize | integer |
None. |
|
| Fecha | date |
None. |
|
| URL | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": "d499976d-b20d-4b7f-859c-95894192f93c",
"IdOwner": "b3decd27-2b45-4ccd-ac30-0f8d824ff180",
"IdLote": "sample string 3",
"FileType": "sample string 4",
"FileName": "sample string 5",
"FileData": "sample string 6",
"FileSize": 7,
"Fecha": "2026-04-20T06:44:57.0290916-03:00",
"URL": "sample string 9"
}
application/xml, text/xml
Sample:
<Documento xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Entities"> <Fecha>2026-04-20T06:44:57.0290916-03:00</Fecha> <FileData>sample string 6</FileData> <FileName>sample string 5</FileName> <FileSize>7</FileSize> <FileType>sample string 4</FileType> <Id>d499976d-b20d-4b7f-859c-95894192f93c</Id> <IdLote>sample string 3</IdLote> <IdOwner>b3decd27-2b45-4ccd-ac30-0f8d824ff180</IdOwner> <URL>sample string 9</URL> </Documento>
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.