BootView WebApi

<back to all web services

SaveCustomerPolicy

Save the eligibility policy for the given customer for the given policy type (there can be only one policy per type per customer). If the current user doesn't have access to this customer, the service returns an error. The current policy will be deleted and replced with the POSTed policy.
SaveCustomerPolicy Parameters:
NameParameterData TypeRequiredDescription
IdpathGuidYesThe customer id.
PolicybodyCustomerPolicyYesThe policy. There can be only one policy per type for each customer, so this will replace the existing policy of the same type.
CustomerPolicy Parameters:
NameParameterData TypeRequiredDescription
IdformintNo
PolicyTypeformEligibilityTypeNo
AggregatorformEligibilityRuleSetAggregatorNo
RuleSetsformList<CustomerPolicy>No
RulesformList<Rule>No
EligibilityType Enum:
Unkown
Notice
Boot
Tow
SelfRelease
AssistedRelease
EligibilityRuleSetAggregator Enum:
Unknown
All
Any
None
Rule Parameters:
NameParameterData TypeRequiredDescription
IdformintNo
DescriptionformstringNo
RuleTypeformstringNo
RuleDataformRuleDataNo
RuleData Parameters:
NameParameterData TypeRequiredDescription
AlertTypeIdformint?No
AmountDueThresholdformdecimal?No
AmountPaidThresholdformdecimal?No
BillTypeIdformint?No
DocumentProofTypeIdformint?No
RuleTypeIdformintNo
RuleSetIdformintNo
LicenseStateformstringNo

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

HTTP + SOAP11

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

POST /soap11 HTTP/1.1 
Host: api.paylock.com 
Content-Type: text/xml; charset=utf-8
Content-Length: length
SOAPAction: SaveCustomerPolicy

<?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>

<SaveCustomerPolicy xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BootView.WebApi.ServiceModel">
  <Id>00000000-0000-0000-0000-000000000000</Id>
  <Policy>
    <Aggregator>Unknown</Aggregator>
    <Id>0</Id>
    <PolicyType>Unkown</PolicyType>
    <RuleSets>
      <CustomerPolicy>
        <Aggregator>Unknown</Aggregator>
        <Id>0</Id>
        <PolicyType>Unkown</PolicyType>
        <RuleSets>
          <CustomerPolicy>
            <Aggregator>Unknown</Aggregator>
            <Id>0</Id>
            <PolicyType>Unkown</PolicyType>
            <RuleSets>
              <CustomerPolicy i:nil="true" />
            </RuleSets>
            <Rules>
              <Rule>
                <Description>String</Description>
                <Id>0</Id>
                <RuleData>
                  <AlertTypeId>0</AlertTypeId>
                  <AmountDueThreshold>0</AmountDueThreshold>
                  <AmountPaidThreshold>0</AmountPaidThreshold>
                  <BillTypeId>0</BillTypeId>
                  <DocumentProofTypeId>0</DocumentProofTypeId>
                  <LicenseState>String</LicenseState>
                  <RuleSetId>0</RuleSetId>
                  <RuleTypeId>0</RuleTypeId>
                </RuleData>
                <RuleType>String</RuleType>
              </Rule>
            </Rules>
          </CustomerPolicy>
        </RuleSets>
        <Rules>
          <Rule>
            <Description>String</Description>
            <Id>0</Id>
            <RuleData>
              <AlertTypeId>0</AlertTypeId>
              <AmountDueThreshold>0</AmountDueThreshold>
              <AmountPaidThreshold>0</AmountPaidThreshold>
              <BillTypeId>0</BillTypeId>
              <DocumentProofTypeId>0</DocumentProofTypeId>
              <LicenseState>String</LicenseState>
              <RuleSetId>0</RuleSetId>
              <RuleTypeId>0</RuleTypeId>
            </RuleData>
            <RuleType>String</RuleType>
          </Rule>
        </Rules>
      </CustomerPolicy>
    </RuleSets>
    <Rules>
      <Rule>
        <Description>String</Description>
        <Id>0</Id>
        <RuleData>
          <AlertTypeId>0</AlertTypeId>
          <AmountDueThreshold>0</AmountDueThreshold>
          <AmountPaidThreshold>0</AmountPaidThreshold>
          <BillTypeId>0</BillTypeId>
          <DocumentProofTypeId>0</DocumentProofTypeId>
          <LicenseState>String</LicenseState>
          <RuleSetId>0</RuleSetId>
          <RuleTypeId>0</RuleTypeId>
        </RuleData>
        <RuleType>String</RuleType>
      </Rule>
    </Rules>
  </Policy>
</SaveCustomerPolicy>

    </soap:Body>
</soap:Envelope>
HTTP/1.1 200 OK
Content-Type: application/xml
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>

<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">0</int>

    </soap:Body>
</soap:Envelope>