POST Authentication/RegisterVehicleAndSocket

Request Information

URI Parameters

None.

Body Parameters

RegisterVehicleAndSocket
NameDescriptionTypeAdditional information
ID

string

None.

BrandID

string

None.

ModelID

string

None.

Sockets

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": "sample string 1",
  "BrandID": "sample string 2",
  "ModelID": "sample string 3",
  "Sockets": "sample string 4"
}

application/xml, text/xml

Sample:
<RegisterVehicleAndSocket xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models">
  <BrandID>sample string 2</BrandID>
  <ID>sample string 1</ID>
  <ModelID>sample string 3</ModelID>
  <Sockets>sample string 4</Sockets>
</RegisterVehicleAndSocket>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'RegisterVehicleAndSocket'.

Response Information

Resource Description

Response
NameDescriptionTypeAdditional information
Success

boolean

None.

ResponseCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Success": true,
  "ResponseCode": "sample string 2"
}

application/xml, text/xml

Sample:
<Response xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ChargeCloudAPI.Models">
  <ResponseCode>sample string 2</ResponseCode>
  <Success>true</Success>
</Response>