GET api/Export/ExportFromCSV/{id}
Export from CSV You should post a JSON.stringify({ 'data': data }) that has the CSV as string
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | ExportToFormat |
Required |
Body Parameters
ExportData| Name | Description | Type | Additional information |
|---|---|---|---|
| data | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"data": "sample string 1"
}
application/xml, text/xml
Sample:
<ExportData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AddressWebAPI.Controllers"> <data>sample string 1</data> </ExportData>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
a GUID that is necessary to to obtain the file. Must be called in 10 minutes max
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.