gigstack API
  1. Invoices
gigstack API
  • gigstack API, your fiscal infraestructure
  • Ping
    • Ping
    • Ping API (GET)
      GET
    • Ping API (POST)
      POST
    • Ping API (PUT)
      PUT
    • Ping API (DELETE)
      DELETE
  • Payments
    • Payments
    • Create a payment
      POST
    • List payments
      GET
    • Get payment by ID
      GET
  • Invoices
    • Invoices
    • Create an invoice
      POST
    • List invoices
      GET
    • Get invoice by ID
      GET
  • Clients
    • Clients
    • Create a client
      POST
    • List clients
      GET
    • Get client by ID
      GET
  • Services
    • Services
    • Create a service
      POST
    • List services
      GET
    • Get service by ID
      GET
  • Receipts
    • Receipts
    • Create a receipt
      POST
    • List receipts
      GET
    • Get receipt by ID
      GET
    • Update receipt
      PUT
    • Delete receipt
      DELETE
  • Webhooks
    • Webhooks
    • Create a webhook
    • List webhooks
    • Get webhook by ID
    • Delete webhook
  • Catalogs
    • Catalogs
    • List catalogs
    • Get catalog by ID
  • Connect
    • Connect
    • Create a team
    • List teams
    • Get team by ID
    • Update team
    • Get team onboarding URL and connection status
    • Get team members
    • Update team members
    • Remove team members
  1. Invoices

List invoices

Develop Env
https://api.gigstack.io/v2
Develop Env
https://api.gigstack.io/v2
GET
https://api.gigstack.io/v2
/invoices
Invoices
Returns a list of invoices
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.gigstack.io/v2/invoices' \
--header 'Authorization;'
Response Response Example
200 - Example 1
{
    "data": [
        {}
    ],
    "message": "string",
    "next": "string",
    "totalResults": 0,
    "hasMore": true
}

Request

Authorization
API Key
Add parameter in header
Authorization
Example:
Authorization: ********************
or
Query Params
limit
integer 
optional
Number of items to return per page
>= 1
starting_after
string 
optional
Cursor for pagination, ID of the item to start after
order_by
string 
optional
Field to order results by
order_direction
enum<string> 
optional
Direction to order results (asc or desc)
Allowed values:
ascdesc
rfc
string 
optional
Filter by client RFC
status
string 
optional
Filter by status
amount
number 
optional
Filter by amount
clientId
string 
optional
Filter by client ID
series
string 
optional
Filter by series
folio_number
string 
optional
Filter by folio number

Responses

🟢200OK
application/json
List of invoices
Body
data
array [object] 
optional
message
string 
optional
next
string  | null 
optional
totalResults
integer 
optional
hasMore
boolean 
optional
🟠401Unauthorized
Modified at 2025-06-16 03:36:47
Previous
Create an invoice
Next
Get invoice by ID
Built with