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": "f282b593-8041-473f-b752-36e49d1f5fdb",
  "storageCardId": "45216c6e-a3d6-42f4-96b2-6046c0ea354d",
  "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>45216c6e-a3d6-42f4-96b2-6046c0ea354d</_x003C_StorageCardId_x003E_k__BackingField>
  <_x003C_TireScanId_x003E_k__BackingField>f282b593-8041-473f-b752-36e49d1f5fdb</_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.