POST api/V3/TertiaryEntity/CreateUpdateMultiple
Adds or updates multiple tertiary entities in the batch (Max 2000 records can be created or updated in one request)
Request Information
URI Parameters
None.
Body Parameters
List of new tertiary entities to be created or updated (Max 2000)
Collection of TertiaryEntityCreateUpdateName | Description | Type | Additional information |
---|---|---|---|
OutletErpIds |
List of outlets to map with the tertiary entity |
Collection of string |
None. |
Name |
Name of the Tertiary Entity |
string |
Required String length: inclusive between 0 and 100 |
ErpId |
Erp Code of the Tertiary Entity |
string |
Required String length: inclusive between 0 and 100 |
OwnersName |
Name of the Owner of the Tertiary Entity |
string |
String length: inclusive between 0 and 100 |
OwnersNo |
Contact number of the Owner of the Tertiary Entity |
string |
Required String length: inclusive between 0 and 100 |
EmailId |
Email of the Owner |
string |
None. |
Address |
Address of the Tertiary Entity |
string |
Required String length: inclusive between 0 and 100 |
City |
Name of the City in which the Tertiary Entity is Located |
string |
String length: inclusive between 0 and 100 |
State |
Name of the State in which the Tertiary Entity is Located |
string |
Required |
PinCode |
Area PinCode of the Location of the Outlet |
string |
Matching regular expression pattern: ^[1-9]\d{3,5}$ String length: inclusive between 0 and 10 |
AttributeNumber1 |
Extra attribute type decimal |
decimal number |
None. |
AttributeNumber2 |
Extra attribute type decimal |
decimal number |
None. |
AttributeNumber3 |
Extra attribute type decimal |
decimal number |
None. |
AttributeText1 |
Extra attribute type text |
string |
None. |
AttributeText2 |
Extra attribute type text |
string |
None. |
AttributeText3 |
Extra attribute type text |
string |
None. |
IsDeactive |
To Deactivate Tertiary Entity |
boolean |
None. |
Request Formats
application/json, text/json
[ { "OutletErpIds": [ "sample string 1", "sample string 2" ], "Name": "sample string 1", "ErpId": "sample string 2", "OwnersName": "sample string 3", "OwnersNo": "sample string 4", "EmailId": "sample string 5", "Address": "sample string 6", "City": "sample string 7", "State": "sample string 8", "PinCode": "sample string 9", "AttributeNumber1": 1.1, "AttributeNumber2": 1.1, "AttributeNumber3": 1.1, "AttributeText1": "sample string 10", "AttributeText2": "sample string 11", "AttributeText3": "sample string 12", "IsDeactive": true }, { "OutletErpIds": [ "sample string 1", "sample string 2" ], "Name": "sample string 1", "ErpId": "sample string 2", "OwnersName": "sample string 3", "OwnersNo": "sample string 4", "EmailId": "sample string 5", "Address": "sample string 6", "City": "sample string 7", "State": "sample string 8", "PinCode": "sample string 9", "AttributeNumber1": 1.1, "AttributeNumber2": 1.1, "AttributeNumber3": 1.1, "AttributeText1": "sample string 10", "AttributeText2": "sample string 11", "AttributeText3": "sample string 12", "IsDeactive": true } ]
application/xml, text/xml
<ArrayOfTertiaryEntityCreateUpdate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ExternalApis.Models.V3"> <TertiaryEntityCreateUpdate> <Address>sample string 6</Address> <AttributeNumber1>1.1</AttributeNumber1> <AttributeNumber2>1.1</AttributeNumber2> <AttributeNumber3>1.1</AttributeNumber3> <AttributeText1>sample string 10</AttributeText1> <AttributeText2>sample string 11</AttributeText2> <AttributeText3>sample string 12</AttributeText3> <City>sample string 7</City> <EmailId>sample string 5</EmailId> <ErpId>sample string 2</ErpId> <IsDeactive>true</IsDeactive> <Name>sample string 1</Name> <OwnersName>sample string 3</OwnersName> <OwnersNo>sample string 4</OwnersNo> <PinCode>sample string 9</PinCode> <State>sample string 8</State> <OutletErpIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:string>sample string 1</d3p1:string> <d3p1:string>sample string 2</d3p1:string> </OutletErpIds> </TertiaryEntityCreateUpdate> <TertiaryEntityCreateUpdate> <Address>sample string 6</Address> <AttributeNumber1>1.1</AttributeNumber1> <AttributeNumber2>1.1</AttributeNumber2> <AttributeNumber3>1.1</AttributeNumber3> <AttributeText1>sample string 10</AttributeText1> <AttributeText2>sample string 11</AttributeText2> <AttributeText3>sample string 12</AttributeText3> <City>sample string 7</City> <EmailId>sample string 5</EmailId> <ErpId>sample string 2</ErpId> <IsDeactive>true</IsDeactive> <Name>sample string 1</Name> <OwnersName>sample string 3</OwnersName> <OwnersNo>sample string 4</OwnersNo> <PinCode>sample string 9</PinCode> <State>sample string 8</State> <OutletErpIds xmlns:d3p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d3p1:string>sample string 1</d3p1:string> <d3p1:string>sample string 2</d3p1:string> </OutletErpIds> </TertiaryEntityCreateUpdate> </ArrayOfTertiaryEntityCreateUpdate>
Response Information
Resource Description
Response Description with message and ErpId or, ErrorMessage as String
ApiResponseV2OfTertiaryEntityAttributesName | Description | Type | Additional information |
---|---|---|---|
Message | string |
None. |
|
ResponseList | Collection of ApiResponseMessageV2OfTertiaryEntityAttributes |
None. |
|
ResponseStatus | ResponseStatus |
None. |
|
ResponseStatusCount | ResponseStatusCount |
None. |
Response Formats
application/json, text/json
Sample not available.