POST api/Pcb/PayTGroupOrder

Pay for Awaiting-Payment Order Package

Request Information

URI Parameters

None.

Body Parameters

Request Parameters

PayTGroupOrderRequest
NameDescriptionTypeAdditional information
TGroupNo

Awaiting-Payment Order package number

string

Required

PayType

Payment Methods

PayType

Required

Request Formats

application/json, text/json

Sample:
{
  "TGroupNo": "sample string 1",
  "PayType": 1
}

Response Information

Resource Description

PayTGroupOrderResponse
NameDescriptionTypeAdditional 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

Sample:
{
  "DeliveryDate": "2025-05-05T22:12:52.6200972+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
}