POST api/ApplicationContractPayment
Add new application contract payment record(s)
Request Information
URI Parameters
None.
Body Parameters
ApplicationContractPaymentDTOName | Description | Type | Additional information |
---|---|---|---|
Id | integer |
None. |
|
BusinessID | integer |
None. |
|
ApplicationID | integer |
None. |
|
ContractID | integer |
None. |
|
UserID | integer |
None. |
|
DocumentNumber | string |
None. |
|
WarrantDate | date |
None. |
|
WarrantNumber | string |
None. |
|
SentToWolfsDate | date |
None. |
|
AcceptedbyWolfsDate | date |
None. |
|
VCNumber | string |
None. |
|
ContractStartDate | date |
None. |
|
ContractEndDate | date |
None. |
|
PaymentAmount | decimal number |
None. |
|
CreatedDate | date |
None. |
Request Formats
application/json, text/json
Sample:
{ "Id": 1, "BusinessID": 2, "ApplicationID": 3, "ContractID": 4, "UserID": 5, "DocumentNumber": "sample string 6", "WarrantDate": "2025-04-29T09:31:23.5352415-06:00", "WarrantNumber": "sample string 8", "SentToWolfsDate": "2025-04-29T09:31:23.5352415-06:00", "AcceptedbyWolfsDate": "2025-04-29T09:31:23.5352415-06:00", "VCNumber": "sample string 11", "ContractStartDate": "2025-04-29T09:31:23.5352415-06:00", "ContractEndDate": "2025-04-29T09:31:23.5352415-06:00", "PaymentAmount": 14.0, "CreatedDate": "2025-04-29T09:31:23.5352415-06:00" }
text/html
Sample:
{"Id":1,"BusinessID":2,"ApplicationID":3,"ContractID":4,"UserID":5,"DocumentNumber":"sample string 6","WarrantDate":"2025-04-29T09:31:23.5352415-06:00","WarrantNumber":"sample string 8","SentToWolfsDate":"2025-04-29T09:31:23.5352415-06:00","AcceptedbyWolfsDate":"2025-04-29T09:31:23.5352415-06:00","VCNumber":"sample string 11","ContractStartDate":"2025-04-29T09:31:23.5352415-06:00","ContractEndDate":"2025-04-29T09:31:23.5352415-06:00","PaymentAmount":14.0,"CreatedDate":"2025-04-29T09:31:23.5352415-06:00"}
application/xml, text/xml
Sample:
<ApplicationContractPaymentDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._BOL"> <AcceptedbyWolfsDate>2025-04-29T09:31:23.5352415-06:00</AcceptedbyWolfsDate> <ApplicationID>3</ApplicationID> <BusinessID>2</BusinessID> <ContractEndDate>2025-04-29T09:31:23.5352415-06:00</ContractEndDate> <ContractID>4</ContractID> <ContractStartDate>2025-04-29T09:31:23.5352415-06:00</ContractStartDate> <CreatedDate>2025-04-29T09:31:23.5352415-06:00</CreatedDate> <DocumentNumber>sample string 6</DocumentNumber> <Id>1</Id> <PaymentAmount>14</PaymentAmount> <SentToWolfsDate>2025-04-29T09:31:23.5352415-06:00</SentToWolfsDate> <UserID>5</UserID> <VCNumber>sample string 11</VCNumber> <WarrantDate>2025-04-29T09:31:23.5352415-06:00</WarrantDate> <WarrantNumber>sample string 8</WarrantNumber> </ApplicationContractPaymentDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
StatusDTOName | Description | Type | Additional information |
---|---|---|---|
id | integer |
None. |
|
msg | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "id": 1, "msg": "sample string 1" }
text/html
Sample:
{"id":1,"msg":"sample string 1"}
application/xml, text/xml
Sample:
<StatusDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/TrainingFundREST._DAL"> <id>1</id> <msg>sample string 1</msg> </StatusDTO>