POST api/CrmInfo/AddNewUser

“AddNewUser”的文档。

Request Information

Parameters

NameDescriptionAdditional information
model
“model”的文档。

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "Phone": "sample string 2",
  "Brand": "sample string 3",
  "Series": "sample string 4",
  "Type": "sample string 5",
  "Year": "sample string 6",
  "disp": "sample string 7",
  "UId": "sample string 8",
  "CarNumber": "sample string 9",
  "CarType": "sample string 10"
}

application/xml, text/xml

Sample:
<NewUserModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models">
  <Brand>sample string 3</Brand>
  <CarNumber>sample string 9</CarNumber>
  <CarType>sample string 10</CarType>
  <Name>sample string 1</Name>
  <Phone>sample string 2</Phone>
  <Series>sample string 4</Series>
  <Type>sample string 5</Type>
  <UId>sample string 8</UId>
  <Year>sample string 6</Year>
  <disp>sample string 7</disp>
</NewUserModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Response body formats

application/json, text/json

Sample:
{
  "Success": true,
  "Message": "sample string 2",
  "DataId": "sample string 3",
  "Uid": "sample string 4",
  "Id": 5,
  "CrmUid": "sample string 6",
  "CarInfo": {
    "ctype": "sample string 1",
    "cname": "sample string 2",
    "proyear": "sample string 3",
    "displace": "sample string 4",
    "carimg": "sample string 5",
    "carInfoId": 6,
    "cimg": "sample string 7",
    "ctyresize": "sample string 8",
    "carnumber": "sample string 9",
    "userbindid": 10
  }
}

application/xml, text/xml

Sample:
<ReturnModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TyretoolMail.Models">
  <CarInfo>
    <carInfoId>6</carInfoId>
    <carimg>sample string 5</carimg>
    <carnumber>sample string 9</carnumber>
    <cimg>sample string 7</cimg>
    <cname>sample string 2</cname>
    <ctype>sample string 1</ctype>
    <ctyresize>sample string 8</ctyresize>
    <displace>sample string 4</displace>
    <proyear>sample string 3</proyear>
    <userbindid>10</userbindid>
  </CarInfo>
  <CrmUid>sample string 6</CrmUid>
  <DataId>sample string 3</DataId>
  <Id>5</Id>
  <Message>sample string 2</Message>
  <Success>true</Success>
  <Uid>sample string 4</Uid>
</ReturnModel>