Filter results by organization identifier.
This is required if user identifier is not specified.
GET
/admin/v1/invoicesLists invoices.
curl https://api.userhub.com/admin/v1/invoices?organizationId=org_28seyVGVL1got6 \
-H "Authorization: Bearer $USERHUB_ADMIN_KEY"
const res = await adminApi.invoices.list({
organizationId: "org_28seyVGVL1got6",
});
res, err := adminApi.Invoices().List(
context.Background(),
&adminapi.InvoiceListInput{
OrganizationId: "org_28seyVGVL1got6",
},
)
$res = $adminApi->invoices->list(
organizationId: 'org_28seyVGVL1got6',
);
res = admin_api.invoices.list(
organization_id="org_28seyVGVL1got6",
)
{
"invoices": [
{
"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"
}
],
"nextPageToken": ""
}