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": "bae79142-8127-49bf-b367-69b205ad139b",
"BuyerId": "441aea33-716d-4953-82f9-67951f009929",
"Direct": 2,
"PayType": 0,
"State": 0,
"BuyerHost": "sample string 3",
"PersonCommissions": [
1,
2
],
"ValidPersonIds": [
"e46383cc-25a8-4c24-a986-3c9201e1c3d1",
"c9664858-a138-432f-82da-99f2b3dd558c"
],
"PersonIds": [
"5957e086-3910-4d54-ac80-429e9fac0653",
"34776ed7-524b-4e5e-8dd6-8c0bcd494937"
],
"PaymentOrderId": "sample string 4",
"Cent": 5,
"Description": "sample string 6",
"CreatedTime": "2026-09-06T20:55:00.1080859+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>441aea33-716d-4953-82f9-67951f009929</BuyerId>
<Cent>5</Cent>
<CreatedTime>2026-09-06T20:55:00.1080859+08:00</CreatedTime>
<Description>sample string 6</Description>
<Direct>Expend</Direct>
<Id>bae79142-8127-49bf-b367-69b205ad139b</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>5957e086-3910-4d54-ac80-429e9fac0653</d2p1:guid>
<d2p1:guid>34776ed7-524b-4e5e-8dd6-8c0bcd494937</d2p1:guid>
</PersonIds>
<State>Failure</State>
<ValidPersonIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<d2p1:guid>e46383cc-25a8-4c24-a986-3c9201e1c3d1</d2p1:guid>
<d2p1:guid>c9664858-a138-432f-82da-99f2b3dd558c</d2p1:guid>
</ValidPersonIds>
</PaymentRecordInfo>