POST api/AccountApi/HistorialFileDownload
Request Information
URI Parameters
None.
Body Parameters
HistorialParamName | Description | Type | Additional information |
---|---|---|---|
Nombre | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "Nombre": "sample string 1" }
application/xml, text/xml
Sample:
<HistorialParam xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities.Domain"> <Nombre>sample string 1</Nombre> </HistorialParam>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
HistorialFileDownloadName | Description | Type | Additional information |
---|---|---|---|
array | Collection of byte |
None. |
|
nombre | string |
None. |
|
Errors | APIErrors |
None. |
Response Formats
application/json, text/json
Sample:
{ "array": "QEA=", "nombre": "sample string 1", "Errors": { "HasErrors": true, "ErrorList": [ { "Message": "sample string 1", "Source": "sample string 2" }, { "Message": "sample string 1", "Source": "sample string 2" } ] } }
application/xml, text/xml
Sample:
<HistorialFileDownload xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities"> <Errors xmlns="http://schemas.datacontract.org/2004/07/Mastersoft.BigDipper.Entities.Domain"> <ErrorList> <APIErrorMessage> <Message>sample string 1</Message> <Source>sample string 2</Source> </APIErrorMessage> <APIErrorMessage> <Message>sample string 1</Message> <Source>sample string 2</Source> </APIErrorMessage> </ErrorList> <HasErrors>true</HasErrors> </Errors> <array>QEA=</array> <nombre>sample string 1</nombre> </HistorialFileDownload>