Get the details of the raw transaction status by providing the order_id
of the transaction. The response will contain the status of the transaction and the transaction hash if the transaction is successful.
Headers
Authorization
: string
Authorization token received from Okto.
Query Parameters
order_id
: string
Order ID of the transaction to check.
Code
curl -X GET '${baseUrl}/api/v1/rawtransaction/status?order_id=71b8dfd0-4d5c-49d6-9c6f-a39fa3252b24'
-H 'x-api-key: YOUR_CLIENT_API_KEY'
-H 'accept: application/json'
-H 'Authorization: Bearer AUTH_TOKEN'
Response
{
"status": "success",
"data": {
"jobs": [
{
"order_id": "71b8dfd0-4d5c-49d6-9c6f-a39fa3252b24",
"network_name": "SOLANA_DEVNET",
"status": "SUCCESS",
"transaction_hash": "45qimRvrsVwRKx2CPxXHS3SCzDjm5gxNqbu6H2yP4fwnnXgKMhJT3NqXpzdxNrv53ftnv2JaHYnu98gXbuNedTnV"
}
]
}
}