Skip to main content
GET
/
stripe
/
connect
/
accounts
/
{accountId}
/
transactions
/
{transactionId}
Get Transaction
curl --request GET \
  --url https://api.chat-dash.com/v1/public/stripe/connect/accounts/{accountId}/transactions/{transactionId} \
  --header 'Authorization: <authorization>'
{
  "id": "pi_3ABC123DEF456GHI",
  "amount": 10000,
  "currency": "usd",
  "status": "succeeded",
  "description": "Subscription creation",
  "customer": {
    "id": "cus_ABC123XYZ",
    "email": "[email protected]",
    "name": "John Doe"
  },
  "created": 1700000000
}

Headers

Authorization
string
required

All requests to the ChatDash API must be validated with the agency API Key found on your agency profile

Path Parameters

accountId
string
required

The Stripe connected account ID

transactionId
string
required

The Stripe transaction ID

Response

OK

id
string

The payment intent ID

Example:

"pi_3ABC123DEF456GHI"

amount
integer

Amount in smallest currency unit (e.g., cents for USD)

Example:

10000

currency
string

Three-letter ISO currency code

Example:

"usd"

status
string

Payment status

Example:

"succeeded"

description
string | null

Description of the payment

Example:

"Subscription creation"

customer
object
created
integer

Unix timestamp of when the transaction was created

Example:

1700000000