POST api/InitTables/SaveCustomerInitTables
Request Information
URI Parameters
None.
Body Parameters
CustomerCloudInitTable| Name | Description | Type | Additional information |
|---|---|---|---|
| Records | Collection of CustomerCloudInitTableRecord |
None. |
|
| TableId | integer |
None. |
|
| CustomerId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"Records": [
{
"Id": 1,
"Name": "sample string 2",
"TableId": 3,
"CustomerId": 4
},
{
"Id": 1,
"Name": "sample string 2",
"TableId": 3,
"CustomerId": 4
}
],
"TableId": 1,
"CustomerId": 2
}
application/xml, text/xml
Sample:
<CustomerCloudInitTable xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/OmdanRestModels.Models.Binding_Models">
<CustomerId>2</CustomerId>
<TableId>1</TableId>
<Records>
<CustomerCloudInitTableRecord>
<CustomerId>4</CustomerId>
<Id>1</Id>
<Name>sample string 2</Name>
<TableId>3</TableId>
</CustomerCloudInitTableRecord>
<CustomerCloudInitTableRecord>
<CustomerId>4</CustomerId>
<Id>1</Id>
<Name>sample string 2</Name>
<TableId>3</TableId>
</CustomerCloudInitTableRecord>
</Records>
</CustomerCloudInitTable>
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.