BootView WebApi

<back to all web services

CreateTowRecord

The following routes are available for this service:
POST/towrecordsCreates a new Tow Record.
CreateTowRecord Parameters:
NameParameterData TypeRequiredDescription
CustomerIdbodyGuidYesThe Customer Id.
BootIdbodyGuidNoThe Boot Record Id.
AttemptIdbodyGuidNoThe Collection Attempt Id.
LicenseTagbodystringYesThe License Tag.
ColorbodystringYesThe vehicle color.
MakeModelbodystringYesThe vehicle make/model.
LicenseStatebodystringYesThe License State.
PlateTypebodystringNoThe Plate Type.
TowedDatebodystringNoThe Towed Date.
TowedTimebodystringNoThe TowedTime.
AttemptTypebodyintNoThe Collection Record Attempt Type
LocationbodystringYesThe Boot Record Id.
TowCompanyIdbodyGuidYesThe Tow Company Id.
OfficerIdbodyGuidYesThe Officer Id.
ParkingAreaIdbodyGuidYesThe Parking Area Id.
BootReturnLocationbodyGuidNoThe Boot Record Id.
BootReturnNotebodystringNoThe Boot Return Note.
BootReturnStatusbodyintNoThe Boot Return Status.
IsBootDamagedbodyboolNoWhether the boot is damaged.
BootDamageNotebodystringNoThe Boot Damage Note.
BootDamageTypesbodyList<BootDamageType>NoThe damage types that apply to the boot.
DamageType Parameters:
NameParameterData TypeRequiredDescription
DamageTypeIdformintNo
DamageTypeNameformstringNo
CreateTowRecordResult Parameters:
NameParameterData TypeRequiredDescription
CollectionAttemptIdformGuidNo

To override the Content-type in your clients, use the HTTP Accept Header, append the .jsv suffix or ?format=jsv

HTTP + JSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /towrecords HTTP/1.1 
Host: api.paylock.com 
Accept: text/jsv
Content-Type: text/jsv
Content-Length: length

{
	customerId: 00000000000000000000000000000000,
	bootId: 00000000000000000000000000000000,
	attemptId: 00000000000000000000000000000000,
	licenseTag: String,
	color: String,
	makeModel: String,
	licenseState: String,
	plateType: String,
	towedDate: 0001-01-01,
	towedTime: 0001-01-01,
	attemptType: 0,
	location: String,
	towCompanyId: 00000000000000000000000000000000,
	officerId: 00000000000000000000000000000000,
	parkingAreaId: 00000000000000000000000000000000,
	bootReturnLocation: 00000000000000000000000000000000,
	bootReturnNote: String,
	bootReturnStatus: 0,
	isBootDamaged: False,
	bootDamageNote: String,
	bootDamageTypes: 
	[
		{
			damageTypeId: 0,
			damageTypeName: String
		}
	]
}
HTTP/1.1 200 OK
Content-Type: text/jsv
Content-Length: length

{
	collectionAttemptId: 00000000000000000000000000000000
}