The identifier of the invoice.
Get an invoice
GET
/admin/v1/invoices/{invoiceId}Retrieves specified invoice.
query parameters
Returns
curl https://api.userhub.com/admin/v1/invoices/in_4QPqKvtqkpJzP7 \
-H "Authorization: Bearer $USERHUB_ADMIN_KEY"
const res = await adminApi.invoices.get(
"in_4QPqKvtqkpJzP7",
);
res, err := adminApi.Invoices().Get(
context.Background(),
"in_4QPqKvtqkpJzP7",
nil,
)
$res = $adminApi->invoices->get(
invoiceId: 'in_4QPqKvtqkpJzP7',
);
res = admin_api.invoices.get(
invoice_id="in_4QPqKvtqkpJzP7",
)
Response bodyJSON
{
"id": "in_4QPqKvtqkpJzP7",
"state": "OPEN",
"stateTime": null,
"connection": {
"id": "conn_4HdRKnTvPmmjYK",
"displayName": "Stripe",
"state": "ACTIVE",
"type": "STRIPE",
"delegate": null,
"providers": [],
"createTime": "2024-11-15T13:00:00Z",
"updateTime": "2024-11-15T13:00:00Z"
},
"externalId": "in_1NrpEGGZpdmtrghC4slAL174",
"number": "ACME-123",
"currencyCode": "USD",
"description": "This is a test.",
"account": {
"fullName": "Jane Doe",
"email": "[email protected]",
"phoneNumber": "+12125550123",
"address": {
"lines": [
"42 West St"
],
"city": "Brooklyn",
"state": "NY",
"postalCode": "11222",
"country": "US"
}
},
"effectiveTime": "2024-11-15T13:00:00Z",
"period": {
"startTime": "2024-11-15T13:00:00Z",
"endTime": "2024-11-15T13:00:00Z"
},
"subtotalAmount": "9",
"discountAmount": "1",
"balance": {
"startAmount": "100",
"endAmount": "200",
"appliedAmount": "-100"
},
"taxAmount": "2",
"dueAmount": "10",
"dueTime": "2024-11-15T13:00:00Z",
"paidAmount": "0",
"paymentIntent": null,
"items": [
{
"id": "ii_35kH3awC",
"product": null,
"price": null,
"quantity": 2,
"subtotalAmount": "10",
"discountAmount": "1",
"description": "This is a test item.",
"externalId": "ii_456",
"period": null
}
],
"changes": [],
"pullTime": "2024-11-15T13:00:00Z",
"createTime": "2024-11-15T13:00:00Z",
"updateTime": "2024-11-15T13:00:00Z"
}