Transaction Routes
Get Transaction By ID
Get a transaction by its id.
GET
/
v2
/
transactions
/
{transaction_id}
Authorization
Path
curl --request GET \
--url https://api.senddotssandbox.com/api/v2/transactions/{transaction_id} \
--header 'Authorization: <authorization>'
{
"amount": "number",
"created": "string",
"destination_name": "string",
"id": "integer",
"metadata": [
"string",
"object",
"null"
],
"source_name": "string"
}
Authorizations
Authorizationheaderrequired
string
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Path Parameters
transaction_idrequired
string
Id of the transaction
Response
200 - application/json
amount
number
created
string
destination_name
string
id
integer
metadata
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
source_name
string
curl --request GET \
--url https://api.senddotssandbox.com/api/v2/transactions/{transaction_id} \
--header 'Authorization: <authorization>'
{
"amount": "number",
"created": "string",
"destination_name": "string",
"id": "integer",
"metadata": [
"string",
"object",
"null"
],
"source_name": "string"
}