BootView WebApi

<back to all web services

GetBootDetails

The following routes are available for this service:
GET/boots/{bootid}Gets all boot details
GetBootDetails Parameters:
NameParameterData TypeRequiredDescription
BootIdpathGuidYesThe Boot Id.
BootDetails Parameters:
NameParameterData TypeRequiredDescription
BootIdformGuidNo
SerialNumberformstringNo
UnlockCode1formstringNo
UnlockCode2formstringNo
UnlockCode3formstringNo
UnlockCode4formstringNo
IsDamagedformboolNo
CustomerIdformGuid?No

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

HTTP + XML

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

GET /boots/{bootid} HTTP/1.1 
Host: api.paylock.com 
Accept: application/xml
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length

<BootDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BootView.WebApi.ServiceModel">
  <BootId>00000000-0000-0000-0000-000000000000</BootId>
  <CustomerId>00000000-0000-0000-0000-000000000000</CustomerId>
  <IsDamaged>false</IsDamaged>
  <SerialNumber>String</SerialNumber>
  <UnlockCode1>String</UnlockCode1>
  <UnlockCode2>String</UnlockCode2>
  <UnlockCode3>String</UnlockCode3>
  <UnlockCode4>String</UnlockCode4>
</BootDetails>