POST api/Pivot/TransactionList

Request Information

URI Parameters

None.

Body Parameters

Param1
NameDescriptionTypeAdditional information
paramI

string

None.

key

string

None.

Request Formats

application/json, text/json

Sample:
{
  "paramI": "sample string 1",
  "key": "sample string 2"
}

application/xml, text/xml

Sample:
<Param1 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PivotCryptoAPI.Models">
  <key>sample string 2</key>
  <paramI>sample string 1</paramI>
</Param1>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ReturnTransactionDataAPI
NameDescriptionTypeAdditional information
status

string

None.

message

string

None.

data

Collection of TransactionLog

None.

Response Formats

application/json, text/json

Sample:
{
  "status": "sample string 1",
  "message": "sample string 2",
  "data": [
    {
      "TrxID": 1,
      "UserID": 1,
      "TrxName": "sample string 2",
      "TrxAddress": "sample string 3",
      "TrxAmount": 1.0,
      "TrxHash": "sample string 4",
      "TrxType": "sample string 5",
      "TrxDate": "2025-08-03T21:59:51.900342+05:30",
      "Status": "sample string 6",
      "Flag": "sample string 7",
      "ModifyDate": "2025-08-03T21:59:51.900342+05:30"
    },
    {
      "TrxID": 1,
      "UserID": 1,
      "TrxName": "sample string 2",
      "TrxAddress": "sample string 3",
      "TrxAmount": 1.0,
      "TrxHash": "sample string 4",
      "TrxType": "sample string 5",
      "TrxDate": "2025-08-03T21:59:51.900342+05:30",
      "Status": "sample string 6",
      "Flag": "sample string 7",
      "ModifyDate": "2025-08-03T21:59:51.900342+05:30"
    }
  ]
}

application/xml, text/xml

Sample:
<ReturnTransactionDataAPI xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PivotCryptoAPI.Models">
  <data>
    <TransactionLog>
      <Flag>sample string 7</Flag>
      <ModifyDate>2025-08-03T21:59:51.900342+05:30</ModifyDate>
      <Status>sample string 6</Status>
      <TrxAddress>sample string 3</TrxAddress>
      <TrxAmount>1</TrxAmount>
      <TrxDate>2025-08-03T21:59:51.900342+05:30</TrxDate>
      <TrxHash>sample string 4</TrxHash>
      <TrxID>1</TrxID>
      <TrxName>sample string 2</TrxName>
      <TrxType>sample string 5</TrxType>
      <UserID>1</UserID>
    </TransactionLog>
    <TransactionLog>
      <Flag>sample string 7</Flag>
      <ModifyDate>2025-08-03T21:59:51.900342+05:30</ModifyDate>
      <Status>sample string 6</Status>
      <TrxAddress>sample string 3</TrxAddress>
      <TrxAmount>1</TrxAmount>
      <TrxDate>2025-08-03T21:59:51.900342+05:30</TrxDate>
      <TrxHash>sample string 4</TrxHash>
      <TrxID>1</TrxID>
      <TrxName>sample string 2</TrxName>
      <TrxType>sample string 5</TrxType>
      <UserID>1</UserID>
    </TransactionLog>
  </data>
  <message>sample string 2</message>
  <status>sample string 1</status>
</ReturnTransactionDataAPI>