POST api/plusfirstrun/insert
Request Information
URI Parameters
None.
Body Parameters
EPlusFirstRunInsertRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| name | string |
None. |
|
| programVersion | string |
None. |
|
| programName | string |
None. |
|
| os | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"name": "sample string 1",
"programVersion": "sample string 2",
"programName": "sample string 3",
"os": "sample string 4"
}
application/xml, text/xml
Sample:
<EPlusFirstRunInsertRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExpressPcbWebsiteAPI.Controllers"> <name>sample string 1</name> <os>sample string 4</os> <programName>sample string 3</programName> <programVersion>sample string 2</programVersion> </EPlusFirstRunInsertRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
EPlusFirstRunInsertResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| success | boolean |
None. |
Response Formats
application/json, text/json
Sample:
{
"success": true
}
application/xml, text/xml
Sample:
<EPlusFirstRunInsertResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExpressPcbWebsiteAPI.Controllers"> <success>true</success> </EPlusFirstRunInsertResponse>