Skip to main content
GET
/
invoice_groups
List Invoice Groups
curl --request GET \
  --url https://api.togai.com/invoice_groups \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "email": "<string>",
      "dailyInvoiceConsolidation": true,
      "invoiceCurrency": "<string>",
      "billingAddress": {
        "phoneNumber": "<string>",
        "line1": "<string>",
        "line2": "<string>",
        "postalCode": "<string>",
        "city": "<string>",
        "state": "<string>",
        "country": "<string>"
      },
      "accountsCount": 1,
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "netTermDays": 123
    }
  ],
  "nextToken": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Response to get invoice group request

data
object[]
nextToken
string