POST api/Solution/Export
Generate a solution export template
Request Information
URI Parameters
None.
Body Parameters
The parameters for the export job
WorkPoint365.WebAPI.Model.Controllers.ExportImport.ExportModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Name |
Name of the Export template |
string |
None. |
| Description |
Description of the Export template |
string |
None. |
| CallbackUrl |
Option for Callback Url |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Name": "sample string 1",
"Description": "sample string 2",
"CallbackUrl": "sample string 3"
}
application/xml, text/xml
Sample:
<ExportModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WorkPoint365.WebAPI.Model.Controllers.ExportImport"> <CallbackUrl>sample string 3</CallbackUrl> <Description>sample string 2</Description> <Name>sample string 1</Name> </ExportModel>
Response Information
Resource Description
The Id of the queued job.
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.