Managed Account Authentication
Managed Transfers
Transactions
Self Managed Account Authentication
Transactions
Get transaction details
Get details of an executed order. Typically used to poll the status of the previously executed order.
POST
/
api
/
v1
/
transactions
/
details
Copy
Ask AI
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"
}'
Copy
Ask AI
{
"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
Contact Mesh to get client Secret
Contact Mesh to get client Id
Body
application/json
Response
200
application/json
Transactions obtained.
The response is of type object
.
Copy
Ask AI
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"
}'
Copy
Ask AI
{
"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"
}
Assistant
Responses are generated using AI and may contain mistakes.