POST api/ApplicationStripePayment/InsertPayment
Request Information
URI Parameters
None.
Body Parameters
ApplicationStripePaymentDto| Name | 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": "e82a45bc-3731-4bfa-8809-2f9c86e405f0",
"applicationId": "276cde0d-33ee-4110-8971-fdd9866b3d7c",
"certificateId": "9af05efd-ed49-4954-80d6-e071ee6737a8",
"stripePaymentIntentId": "sample string 2",
"userId": "sample string 3",
"userEmail": "sample string 4",
"amount": 5.0,
"error": "sample string 6",
"status": "sample string 7",
"lastUpdated": "2026-03-22T20:26:44.8234881+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>276cde0d-33ee-4110-8971-fdd9866b3d7c</ApplicationId> <BillingContactEmail>sample string 8</BillingContactEmail> <BillingContactName>sample string 9</BillingContactName> <CertificateId>9af05efd-ed49-4954-80d6-e071ee6737a8</CertificateId> <Error>sample string 6</Error> <Id>e82a45bc-3731-4bfa-8809-2f9c86e405f0</Id> <LastUpdated>2026-03-22T20:26:44.8234881+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.