PUT | /customers/{customerId}/partners/{partnerId} | Updates an existing partner for a given customer. The combination of customer id and partner id uniquely identifies this partner. |
---|
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
CustomerId | path | Guid | Yes | The Customer Id. |
PartnerId | path | Guid | Yes | The Partner Id. |
PartnerMunicipalityCode | body | string | Yes | The Municipality Code of the Partner. |
IsRealTimeBills | body | bool | Yes | Whether the Partner uses real time bills. |
IsRealTimeBoots | body | bool | Yes | Whether the Partner uses real time boots. |
ConnectionProfile | body | string | No | The connection profile of the Partner. |
dbprefix | body | string | No | The prefix in the database for the Partner. |
IsRealTimePayments | body | bool | Yes | Whether the Partner receives real time payments. |
LoadBootEligibleTicketsOnly | body | bool | Yes | Whether the Partner loads boot eligible tickets only. |
IsRealTimeReleases | body | bool | No | Whether the Partner uses real time releases. |
IsRealTimeTows | body | bool | No | Whether the Partner uses real time towing. |
IsRealTimeNotices | body | bool | No | Whether the Partner uses real time notices. |
IsRealTimeAddressUpdate | body | bool | No | Whether the Partner uses real time address updates. |
IsRealTimeTowDispatch | body | bool | No | Whether the Partner uses real time tow dispatch. |
IsRealTimeBootReturns | body | bool | No | Whether the Partner uses real time boot returns. |
IsRealTimePaymentPlan | body | bool | No | Whether the Partner uses real time payment plan. |
CanCreateBillsForFees | body | bool | Yes | Whether the Partner can create bills for fees. |
PartnerServices | body | List<CustomerPartnerService> | No | An array of objects representing the services of the partner. |
Name | Parameter | Data Type | Required | Description |
---|---|---|---|---|
Id | form | Guid | No | |
PartnerId | form | Guid? | No | |
CustomerId | form | Guid? | No | |
ServiceName | form | string | No | |
UserId | form | string | No | |
Password | form | string | No |
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
PUT /customers/{customerId}/partners/{partnerId} HTTP/1.1
Host: api.paylock.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<UpdateCustomerPartner xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BootView.WebApi.ServiceModel">
<CanCreateBillsForFees>false</CanCreateBillsForFees>
<ConnectionProfile>String</ConnectionProfile>
<CustomerId>00000000-0000-0000-0000-000000000000</CustomerId>
<IsRealTimeAddressUpdate>false</IsRealTimeAddressUpdate>
<IsRealTimeBills>false</IsRealTimeBills>
<IsRealTimeBootReturns>false</IsRealTimeBootReturns>
<IsRealTimeBoots>false</IsRealTimeBoots>
<IsRealTimeNotices>false</IsRealTimeNotices>
<IsRealTimePaymentPlan>false</IsRealTimePaymentPlan>
<IsRealTimePayments>false</IsRealTimePayments>
<IsRealTimeReleases>false</IsRealTimeReleases>
<IsRealTimeTowDispatch>false</IsRealTimeTowDispatch>
<IsRealTimeTows>false</IsRealTimeTows>
<LoadBootEligibleTicketsOnly>false</LoadBootEligibleTicketsOnly>
<PartnerId>00000000-0000-0000-0000-000000000000</PartnerId>
<PartnerMunicipalityCode>String</PartnerMunicipalityCode>
<PartnerServices>
<CustomerPartnerService>
<CustomerId>00000000-0000-0000-0000-000000000000</CustomerId>
<Id>00000000-0000-0000-0000-000000000000</Id>
<PartnerId>00000000-0000-0000-0000-000000000000</PartnerId>
<Password>String</Password>
<ServiceName>String</ServiceName>
<UserId>String</UserId>
</CustomerPartnerService>
</PartnerServices>
<dbprefix>String</dbprefix>
</UpdateCustomerPartner>
HTTP/1.1 200 OK Content-Type: application/xml Content-Length: length <guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">00000000-0000-0000-0000-000000000000</guid>