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": "9f35ea5e-368a-4274-b5a3-62ddc7272610", "applicationId": "ea7611c2-42c5-48db-8e26-8d52f30684d6", "certificateId": "7319784a-1b01-4249-8915-f70f2cbe665f", "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-05-02T00:46:20.0356337+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>ea7611c2-42c5-48db-8e26-8d52f30684d6</ApplicationId> <BillingContactEmail>sample string 8</BillingContactEmail> <BillingContactName>sample string 9</BillingContactName> <CertificateId>7319784a-1b01-4249-8915-f70f2cbe665f</CertificateId> <Error>sample string 6</Error> <Id>9f35ea5e-368a-4274-b5a3-62ddc7272610</Id> <LastUpdated>2025-05-02T00:46:20.0356337+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.