POST api/stripe/payment/label
Request Information
URI Parameters
None.
Body Parameters
ShippingLabelPaymentRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| Amount | decimal number |
None. |
|
| OrderNumber | string |
None. |
|
| Description | string |
None. |
|
| CustomerEmail | string |
None. |
|
| AllowLink | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"Amount": 2.0,
"OrderNumber": "sample string 3",
"Description": "sample string 4",
"CustomerEmail": "sample string 5",
"AllowLink": true
}
application/xml, text/xml
Sample:
<ShippingLabelPaymentRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Reemy.StripeService"> <AllowLink>true</AllowLink> <Amount>2</Amount> <CustomerEmail>sample string 5</CustomerEmail> <Description>sample string 4</Description> <OrderNumber>sample string 3</OrderNumber> <UserId>1</UserId> </ShippingLabelPaymentRequest>
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.