POST
/
api
/
v1
/
transactions
/
details
curl --request POST \
  --url https://integration-api.meshconnect.com/api/v1/transactions/details \
  --header 'Content-Type: application/json' \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>' \
  --data '{
  "id": "17EC1243-D91A-48B6-B0CE-ECFDB134F8A0",
  "isCryptocurrency": true,
  "authToken": "Secret authentication token",
  "type": "robinhood"
}'
{
  "id": "17EC1243-D91A-48B6-B0CE-ECFDB134F8A0",
  "side": "buy",
  "symbol": "AAPL",
  "assetType": "equity",
  "paymentType": "fiat",
  "amount": 1,
  "price": 120,
  "value": 120,
  "createdTimestamp": 1653215676,
  "updatedTimestamp": 1653215697,
  "status": "success",
  "statusDetails": "",
  "brokerType": "robinhood",
  "transactionType": "order"
}

Authorizations

X-Client-Secret
string
header
required

Contact Mesh to get client Secret

X-Client-Id
string
header
required

Contact Mesh to get client Id

Body

application/json

Response

200
application/json

Transactions obtained.

The response is of type object.