POST api/FlashPayment/GetFlashPaymentOrder
Request Information
URI Parameters
None.
Body Parameters
CreatePaymentOrderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| PackageId | integer |
None. |
|
| Barcode | string |
None. |
|
| CustomerPhone | string |
None. |
|
| AmountCent | decimal number |
None. |
|
| UserId | integer |
None. |
|
| HubName | string |
None. |
|
| MylerName | string |
None. |
|
| MylerPhone | string |
None. |
|
| CustomerName | string |
None. |
|
| PackageDescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"PackageId": 1,
"Barcode": "sample string 2",
"CustomerPhone": "sample string 3",
"AmountCent": 4.1,
"UserId": 5,
"HubName": "sample string 6",
"MylerName": "sample string 7",
"MylerPhone": "sample string 8",
"CustomerName": "sample string 9",
"PackageDescription": "sample string 10"
}
application/xml, text/xml
Sample:
<CreatePaymentOrderDto xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.DTO.MobileDTO"> <AmountCent>4.1</AmountCent> <Barcode>sample string 2</Barcode> <CustomerName>sample string 9</CustomerName> <CustomerPhone>sample string 3</CustomerPhone> <HubName>sample string 6</HubName> <MylerName>sample string 7</MylerName> <MylerPhone>sample string 8</MylerPhone> <PackageDescription>sample string 10</PackageDescription> <PackageId>1</PackageId> <UserId>5</UserId> </CreatePaymentOrderDto>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
DescriptiveResponseOfMobilePaymentOrderDto| Name | Description | Type | Additional information |
|---|---|---|---|
| Value | MobilePaymentOrderDto |
None. |
|
| CoreValue | string |
None. |
|
| IsErrorState | boolean |
None. |
|
| ErrorDescription | string |
None. |
|
| ErrorMetadata | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Value": {
"PackageId": 1,
"CustomerPhone": "sample string 2",
"CODAmount": 3.0,
"PaymentLink": "sample string 4",
"UpdatedDate": "2025-10-28T02:07:37.0344499+03:00",
"Status": "sample string 6",
"NotifiyMessage": "sample string 7",
"ArNotifiyMessage": "sample string 8"
},
"CoreValue": "sample string 1",
"IsErrorState": true,
"ErrorDescription": "sample string 3",
"ErrorMetadata": {}
}
application/xml, text/xml
Sample:
<DescriptiveResponseOfMobilePaymentOrderDtos_SlrnjSQ xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/MYLERZ.Base.Entities">
<CoreValue>sample string 1</CoreValue>
<ErrorDescription>sample string 3</ErrorDescription>
<ErrorMetadata />
<IsErrorState>true</IsErrorState>
<Value xmlns:d2p1="http://schemas.datacontract.org/2004/07/MYLERZ.Base.DTO.MobileDTO">
<d2p1:ArNotifiyMessage>sample string 8</d2p1:ArNotifiyMessage>
<d2p1:CODAmount>3</d2p1:CODAmount>
<d2p1:CustomerPhone>sample string 2</d2p1:CustomerPhone>
<d2p1:NotifiyMessage>sample string 7</d2p1:NotifiyMessage>
<d2p1:PackageId>1</d2p1:PackageId>
<d2p1:PaymentLink>sample string 4</d2p1:PaymentLink>
<d2p1:Status>sample string 6</d2p1:Status>
<d2p1:UpdatedDate>2025-10-28T02:07:37.0344499+03:00</d2p1:UpdatedDate>
</Value>
</DescriptiveResponseOfMobilePaymentOrderDtos_SlrnjSQ>