POST api/Pcb/PayTGroupOrder
Pay for Awaiting-Payment Order Package
Request Information
URI Parameters
None.
Body Parameters
Request Parameters
PayTGroupOrderRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| TGroupNo |
Awaiting-Payment Order package number |
string |
Required |
| PayType |
Payment Methods |
PayType |
Required |
Request Formats
application/json, text/json
{
"TGroupNo": "sample string 1",
"PayType": 1
}
Response Information
Resource Description
PayTGroupOrderResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| DeliveryDate |
Delivery Date (It is returned when PayType turns to AccountPay, otherwise null is returned) |
date |
None. |
| GroupNo |
Order Package Number (It is returned when PayType turns to AccountPay, otherwise null is returned) |
string |
None. |
| TGroupNo |
Order Package Number of Awaiting Payment (It is returned when PayType turns to PCBWayWebPay, otherwise null is returned) |
string |
None. |
| TotalAmount |
Total Amount of Order Package |
decimal number |
None. |
| AccountBalance |
Partner's PCBWay Account Balance |
decimal number |
None. |
| PayType |
Payment Methods |
PayType |
None. |
| PCBWayPayUrl |
PCBWay Payment web page (It is returned when PayType turns to PCBWayWebPay, otherwise null is returned) |
string |
None. |
| Status |
Request processing results ('ok' or 'error') |
string |
None. |
| ErrorText |
Error Description ( Empty when request processing successfully ) |
string |
None. |
| Code |
状态码 |
integer |
None. |
Response Formats
application/json, text/json
{
"DeliveryDate": "2025-11-05T01:10:16.5258498+08:00",
"GroupNo": "sample string 2",
"TGroupNo": "sample string 3",
"TotalAmount": 4.0,
"AccountBalance": 5.0,
"PayType": 1,
"PCBWayPayUrl": "sample string 6",
"Status": "sample string 7",
"ErrorText": "sample string 8",
"Code": 9
}