POST api/ApplicationStripePayment/InsertPayment
Request Information
URI Parameters
None.
Body Parameters
ApplicationStripePaymentDtoName | Description | Type | Additional information |
---|---|---|---|
Id | globally unique identifier |
None. |
|
ApplicationId | globally unique identifier |
None. |
|
CertificateId | globally unique identifier |
None. |
|
StripePaymentIntentId | string |
Required |
|
UserId | string |
Required |
|
UserEmail | string |
None. |
|
Amount | decimal number |
Required |
|
Error | string |
String length: inclusive between 0 and 255 |
|
Status | string |
String length: inclusive between 0 and 255 |
|
LastUpdated | date |
None. |
|
BillingContactEmail | string |
Required String length: inclusive between 0 and 100 |
|
BillingContactName | string |
Required String length: inclusive between 0 and 100 |
Request Formats
application/json, text/json
Sample:
{ "id": "bd8f6e95-9944-44bb-b65c-64483703b634", "applicationId": "16f377d1-71a7-48dd-a81e-081538a8faa3", "certificateId": "9de0af05-ead9-453b-a2f0-efdd42aaf256", "stripePaymentIntentId": "sample string 2", "userId": "sample string 3", "userEmail": "sample string 4", "amount": 5.0, "error": "sample string 6", "status": "sample string 7", "lastUpdated": "2025-06-26T07:18:44.4594229+00:00", "billingContactEmail": "sample string 8", "billingContactName": "sample string 9" }
application/xml, text/xml
Sample:
<ApplicationStripePaymentDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DTO.Model"> <Amount>5</Amount> <ApplicationId>16f377d1-71a7-48dd-a81e-081538a8faa3</ApplicationId> <BillingContactEmail>sample string 8</BillingContactEmail> <BillingContactName>sample string 9</BillingContactName> <CertificateId>9de0af05-ead9-453b-a2f0-efdd42aaf256</CertificateId> <Error>sample string 6</Error> <Id>bd8f6e95-9944-44bb-b65c-64483703b634</Id> <LastUpdated>2025-06-26T07:18:44.4594229+00:00</LastUpdated> <Status>sample string 7</Status> <StripePaymentIntentId>sample string 2</StripePaymentIntentId> <UserEmail>sample string 4</UserEmail> <UserId>sample string 3</UserId> </ApplicationStripePaymentDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.