POST api/tirescanv2/connect

Connects a storage card with a tire scan

Request Information

URI Parameters

None.

Body Parameters

A TireScanConnectionRequestModel

TireScanConnectionRequestModel
NameDescriptionTypeAdditional information
tireScanId

globally unique identifier

Required

storageCardId

globally unique identifier

Required

seasonId

integer

Required

Remarks

None.

Example

//Adds the specified tire scan. A tire scan object is needed in JSON format in the body of the request.
http://localhost/api/tirescan/connect

Request Formats

application/json, text/json

Sample:
{
  "tireScanId": "d1ddccb3-7e92-4b16-9844-1b151f478fd7",
  "storageCardId": "2efa4ba9-6780-4256-982d-4ca69ce5f0bb",
  "seasonId": 3
}

application/xml, text/xml

Sample:
<TireScanConnectionRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Compilator.DDAPI.DTO.TireScan.V2">
  <_x003C_SeasonId_x003E_k__BackingField>3</_x003C_SeasonId_x003E_k__BackingField>
  <_x003C_StorageCardId_x003E_k__BackingField>2efa4ba9-6780-4256-982d-4ca69ce5f0bb</_x003C_StorageCardId_x003E_k__BackingField>
  <_x003C_TireScanId_x003E_k__BackingField>d1ddccb3-7e92-4b16-9844-1b151f478fd7</_x003C_TireScanId_x003E_k__BackingField>
</TireScanConnectionRequestModel>

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 'TireScanConnectionRequestModel'.

Response Information

Resource Description

a TireScanConnectionResultModel

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.