PUT api/provider/program/submit?contactId={contactId}&accountId={accountId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
contactId | globally unique identifier |
Required |
|
accountId | globally unique identifier |
Required |
Body Parameters
FreeProviderProgramSubmitModelName | Description | Type | Additional information |
---|---|---|---|
CartId | globally unique identifier |
None. |
|
ProviderProgramId | globally unique identifier |
None. |
|
ProviderApplicationId | globally unique identifier |
None. |
|
WebProductId | globally unique identifier |
None. |
|
WebProductName | string |
None. |
Request Formats
application/json, text/json
Sample:
{ "CartId": "f2b0520e-077d-4cad-8029-e5aeef6d065e", "ProviderProgramId": "9025b0d8-19af-4c87-bcc1-e020056be3da", "ProviderApplicationId": "c1247ef2-227a-4eca-8d55-f8dd5eff3f28", "WebProductId": "28a9d482-0e29-435e-ab7d-8f94c592c7b6", "WebProductName": "sample string 5" }
application/xml, text/xml
Sample:
<FreeProviderProgramSubmitModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models"> <CartId>f2b0520e-077d-4cad-8029-e5aeef6d065e</CartId> <ProviderApplicationId>c1247ef2-227a-4eca-8d55-f8dd5eff3f28</ProviderApplicationId> <ProviderProgramId>9025b0d8-19af-4c87-bcc1-e020056be3da</ProviderProgramId> <WebProductId>28a9d482-0e29-435e-ab7d-8f94c592c7b6</WebProductId> <WebProductName>sample string 5</WebProductName> </FreeProviderProgramSubmitModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReceiptName | Description | Type | Additional information |
---|---|---|---|
InvoiceId | globally unique identifier |
None. |
|
Messages | Collection of string |
None. |
|
InvoiceNumber | string |
None. |
|
InvoiceDate | date |
None. |
|
TotalAmountPaid | decimal number |
None. |
|
PaymentAuthorizationNumber | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "InvoiceId": "53e36cb2-6cbc-4536-a399-ab4e035d0a81", "Messages": [ "sample string 1", "sample string 2" ], "InvoiceNumber": "sample string 2", "InvoiceDate": "2025-06-30T21:17:15.7120344+00:00", "TotalAmountPaid": 4.0, "PaymentAuthorizationNumber": "sample string 5" }
application/xml, text/xml
Sample:
<Receipt xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/HRCI.Services.BL.Models"> <InvoiceDate>2025-06-30T21:17:15.7120344+00:00</InvoiceDate> <InvoiceId>53e36cb2-6cbc-4536-a399-ab4e035d0a81</InvoiceId> <InvoiceNumber>sample string 2</InvoiceNumber> <Messages xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"> <d2p1:string>sample string 1</d2p1:string> <d2p1:string>sample string 2</d2p1:string> </Messages> <PaymentAuthorizationNumber>sample string 5</PaymentAuthorizationNumber> <TotalAmountPaid>4</TotalAmountPaid> </Receipt>