GET api/Details?orderId={orderId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| orderId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
PaymentRecordInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| BuyerId | globally unique identifier |
None. |
|
| Direct | TradeDirect |
None. |
|
| PayType | PayType |
None. |
|
| State | PaymentState |
None. |
|
| BuyerHost | string |
None. |
|
| PersonCommissions | Collection of unsigned integer |
None. |
|
| ValidPersonIds | Collection of globally unique identifier |
None. |
|
| PersonIds | Collection of globally unique identifier |
None. |
|
| PaymentOrderId | string |
None. |
|
| Cent | unsigned integer |
None. |
|
| Description | string |
None. |
|
| CreatedTime | date |
None. |
|
| PaymentTarget | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "6367ec3a-ab89-4fc1-a2a4-c11a7f6ab3cd",
"BuyerId": "42938d21-c2ff-4135-8c90-a6adc9c1d5a1",
"Direct": 2,
"PayType": 0,
"State": 0,
"BuyerHost": "sample string 3",
"PersonCommissions": [
1,
2
],
"ValidPersonIds": [
"0f8c1dff-4af9-4f34-95ad-fdf9a2e02e09",
"271da2ef-6367-4987-b4b5-a830b8580eb2"
],
"PersonIds": [
"27be6be6-9d26-4b4e-b1dc-f2583593c2bf",
"e6775444-7cae-4300-90e9-c844f2858a00"
],
"PaymentOrderId": "sample string 4",
"Cent": 5,
"Description": "sample string 6",
"CreatedTime": "2026-06-30T23:15:48.5430377+08:00",
"PaymentTarget": "sample string 8"
}
application/xml, text/xml
Sample:
<PaymentRecordInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Desn.FastTransaction.Reports.Data">
<BuyerHost>sample string 3</BuyerHost>
<BuyerId>42938d21-c2ff-4135-8c90-a6adc9c1d5a1</BuyerId>
<Cent>5</Cent>
<CreatedTime>2026-06-30T23:15:48.5430377+08:00</CreatedTime>
<Description>sample string 6</Description>
<Direct>Expend</Direct>
<Id>6367ec3a-ab89-4fc1-a2a4-c11a7f6ab3cd</Id>
<PayType>System</PayType>
<PaymentOrderId>sample string 4</PaymentOrderId>
<PaymentTarget>sample string 8</PaymentTarget>
<PersonCommissions xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:unsignedInt>1</d2p1:unsignedInt>
<d2p1:unsignedInt>2</d2p1:unsignedInt>
</PersonCommissions>
<PersonIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>27be6be6-9d26-4b4e-b1dc-f2583593c2bf</d2p1:guid>
<d2p1:guid>e6775444-7cae-4300-90e9-c844f2858a00</d2p1:guid>
</PersonIds>
<State>Failure</State>
<ValidPersonIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>0f8c1dff-4af9-4f34-95ad-fdf9a2e02e09</d2p1:guid>
<d2p1:guid>271da2ef-6367-4987-b4b5-a830b8580eb2</d2p1:guid>
</ValidPersonIds>
</PaymentRecordInfo>