Skip to main content
GET
/
stripe
/
connect
/
accounts
/
{accountId}
/
invoices
/
{invoiceId}
Get Invoice
curl --request GET \
  --url https://api.chat-dash.com/v1/public/stripe/connect/accounts/{accountId}/invoices/{invoiceId} \
  --header 'Authorization: <authorization>'
{
  "id": "in_1ABC123DEF456GHI",
  "amount": 10000,
  "currency": "usd",
  "status": "paid",
  "number": "GJXQAHMC-0001",
  "customer": {
    "id": "cus_ABC123XYZ",
    "email": "[email protected]",
    "name": "John Doe"
  },
  "description": "",
  "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

invoiceId
string
required

The Stripe invoice ID

Response

OK

id
string

The invoice ID

Example:

"in_1ABC123DEF456GHI"

amount
integer

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

Example:

10000

currency
string

Three-letter ISO currency code

Example:

"usd"

status
enum<string>

Invoice status

Available options:
draft,
open,
paid,
void,
uncollectible
Example:

"paid"

number
string | null

Invoice number

Example:

"GJXQAHMC-0001"

customer
object
description
string

Invoice description

Example:

""

created
integer

Unix timestamp of when the invoice was created

Example:

1700000000