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": "11bff026-b2b7-4b2b-94ed-b5bd4db46bd2",
"applicationId": "b52bac2f-2c41-4415-8d7c-5e0e5485af31",
"certificateId": "b4d1ca94-de05-4212-90da-a78a4f63d3f4",
"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-02-02T00:55:27.1325965+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>b52bac2f-2c41-4415-8d7c-5e0e5485af31</ApplicationId> <BillingContactEmail>sample string 8</BillingContactEmail> <BillingContactName>sample string 9</BillingContactName> <CertificateId>b4d1ca94-de05-4212-90da-a78a4f63d3f4</CertificateId> <Error>sample string 6</Error> <Id>11bff026-b2b7-4b2b-94ed-b5bd4db46bd2</Id> <LastUpdated>2026-02-02T00:55:27.1325965+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.