BackOffice


Click here for a complete list of operations.

PostCustomerItem

Add a vehicle to the system

Test

The test form is only available for requests from the local machine.

SOAP 1.1

The following is a sample SOAP 1.1 request and response. The placeholders shown need to be replaced with actual values.

POST /puckanetennisclub/app/BackOffice.asmx HTTP/1.1
Host: lightingsports.com
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: "http://www.joycesoftware.com/PostCustomerItem"

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <PostCustomerItem xmlns="http://www.joycesoftware.com">
      <customerItem>
        <Id>int</Id>
        <CustomerGuid>string</CustomerGuid>
        <VehicleName>string</VehicleName>
        <VehicleReference>string</VehicleReference>
        <MakeYear>string</MakeYear>
        <NumberPlate>string</NumberPlate>
        <EngineSize>string</EngineSize>
        <CustomText1>string</CustomText1>
        <CustomText2>string</CustomText2>
        <CustomText3>string</CustomText3>
        <CustomText4>string</CustomText4>
        <CustomText5>string</CustomText5>
        <Active>boolean</Active>
        <Deleted>boolean</Deleted>
        <CreatedOn>dateTime</CreatedOn>
        <LastWorkDate>dateTime</LastWorkDate>
        <VehicleGUID>string</VehicleGUID>
        <Model>string</Model>
        <EngineType>string</EngineType>
        <CurrentMileage>decimal</CurrentMileage>
        <PurchaseCost>decimal</PurchaseCost>
        <SalePrice>decimal</SalePrice>
        <CostOfWork>decimal</CostOfWork>
        <PurchaseCostForiegn>decimal</PurchaseCostForiegn>
        <Notes>string</Notes>
      </customerItem>
    </PostCustomerItem>
  </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: text/xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
  <soap:Body>
    <PostCustomerItemResponse xmlns="http://www.joycesoftware.com">
      <PostCustomerItemResult />
    </PostCustomerItemResponse>
  </soap:Body>
</soap:Envelope>

SOAP 1.2

The following is a sample SOAP 1.2 request and response. The placeholders shown need to be replaced with actual values.

POST /puckanetennisclub/app/BackOffice.asmx HTTP/1.1
Host: lightingsports.com
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <PostCustomerItem xmlns="http://www.joycesoftware.com">
      <customerItem>
        <Id>int</Id>
        <CustomerGuid>string</CustomerGuid>
        <VehicleName>string</VehicleName>
        <VehicleReference>string</VehicleReference>
        <MakeYear>string</MakeYear>
        <NumberPlate>string</NumberPlate>
        <EngineSize>string</EngineSize>
        <CustomText1>string</CustomText1>
        <CustomText2>string</CustomText2>
        <CustomText3>string</CustomText3>
        <CustomText4>string</CustomText4>
        <CustomText5>string</CustomText5>
        <Active>boolean</Active>
        <Deleted>boolean</Deleted>
        <CreatedOn>dateTime</CreatedOn>
        <LastWorkDate>dateTime</LastWorkDate>
        <VehicleGUID>string</VehicleGUID>
        <Model>string</Model>
        <EngineType>string</EngineType>
        <CurrentMileage>decimal</CurrentMileage>
        <PurchaseCost>decimal</PurchaseCost>
        <SalePrice>decimal</SalePrice>
        <CostOfWork>decimal</CostOfWork>
        <PurchaseCostForiegn>decimal</PurchaseCostForiegn>
        <Notes>string</Notes>
      </customerItem>
    </PostCustomerItem>
  </soap12:Body>
</soap12:Envelope>
HTTP/1.1 200 OK
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <PostCustomerItemResponse xmlns="http://www.joycesoftware.com">
      <PostCustomerItemResult />
    </PostCustomerItemResponse>
  </soap12:Body>
</soap12:Envelope>