POST api/v1/paymentlinks/paymentintentstripe
Request Information
URI Parameters
None.
Body Parameters
PaymentLinkResquest| Name | Description | Type | Additional information |
|---|---|---|---|
| BranchTransactionId | integer |
None. |
|
| PaymentMethodTypeId | integer |
None. |
|
| BranchId | integer |
None. |
|
| AccountNumber | string |
None. |
|
| ClientSecretToken | string |
None. |
|
| PaymentIntentId | string |
None. |
|
| Amount | decimal number |
None. |
|
| Token | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"BranchTransactionId": 1,
"PaymentMethodTypeId": 2,
"BranchId": 3,
"AccountNumber": "sample string 4",
"ClientSecretToken": "sample string 5",
"PaymentIntentId": "sample string 6",
"Amount": 7.0,
"Token": "sample string 8"
}
application/xml, text/xml
Sample:
<PaymentLinkResquest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MWS.Core.Models.Branches.Transactions"> <AccountNumber>sample string 4</AccountNumber> <Amount>7</Amount> <BranchId>3</BranchId> <BranchTransactionId>1</BranchTransactionId> <ClientSecretToken>sample string 5</ClientSecretToken> <PaymentIntentId>sample string 6</PaymentIntentId> <PaymentMethodTypeId>2</PaymentMethodTypeId> <Token>sample string 8</Token> </PaymentLinkResquest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResponseModelOfTransactionConfirmationResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| Message | string |
None. |
|
| Data | TransactionConfirmationResponse |
None. |
|
| Pagination | Pagination |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.