HTTP + XML
The following are sample HTTP requests and responses.
The placeholders shown need to be replaced with actual values.
POST /xml/reply/PayerFeeScheduleRequest HTTP/1.1
Host: api.practicevelocity.com
Content-Type: application/xml
Content-Length: length
<PayerFeeScheduleRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PV.AutoChargeEntry.DataModel.Payer">
<PayerId>00000000-0000-0000-0000-000000000000</PayerId>
<PracticeId>00000000-0000-0000-0000-000000000000</PracticeId>
<ProcedureCodes xmlns:d2p1="http://schemas.datacontract.org/2004/07/PV.AutoChargeEntry.DataModel.POCOs">
<d2p1:CptWithModifiers>
<d2p1:CptCode>String</d2p1:CptCode>
<d2p1:DateOfService>String</d2p1:DateOfService>
<d2p1:Modifiers xmlns:d4p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d4p1:string>String</d4p1:string>
</d2p1:Modifiers>
</d2p1:CptWithModifiers>
</ProcedureCodes>
</PayerFeeScheduleRequest>
HTTP/1.1 200 OK
Content-Type: application/xml
Content-Length: length
<PayerFeeScheduleResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PV.AutoChargeEntry.DataModel.Payer">
<Fees xmlns:d2p1="http://schemas.datacontract.org/2004/07/PV.AutoChargeEntry.DataModel.POCOs">
<d2p1:FeeScheduleItem>
<d2p1:ArAmount>
<d2p1:Amount>0</d2p1:Amount>
<d2p1:Currency>String</d2p1:Currency>
</d2p1:ArAmount>
<d2p1:Billable>false</d2p1:Billable>
<d2p1:ChargeAmount>
<d2p1:Amount>0</d2p1:Amount>
<d2p1:Currency>String</d2p1:Currency>
</d2p1:ChargeAmount>
<d2p1:Description>String</d2p1:Description>
<d2p1:FeeId>00000000-0000-0000-0000-000000000000</d2p1:FeeId>
<d2p1:Modifier>String</d2p1:Modifier>
<d2p1:ProcCode>String</d2p1:ProcCode>
<d2p1:RevCode>String</d2p1:RevCode>
</d2p1:FeeScheduleItem>
</Fees>
</PayerFeeScheduleResponse>