FieldEdge Open API
dev
  • production
  • dev
DocsAPIs
DocsAPIs
dev
  • production
  • dev
dev
  • production
  • dev
  1. Invoice
  • Lead
    • Creates a new lead with customer details, appointment preferences, and service information.
      POST
    • Fetches lead details based on the provided lead identifier.
      GET
  • Customer
    • Creates a new customer
      POST
    • Updates an existing customer
      PUT
    • Search customers with optional filters
      GET
    • Retrieve customer details by ID
      GET
    • Retrieve customers based on address details.
      GET
    • Retrieve customer by phone number
      GET
  • Item Category
    • Retrieve list of item categories
      GET
    • Retrieve item category by id.
      GET
    • Create a new item category
      POST
    • Partially update an item category
      PATCH
  • Item
    • Retrieve a paginated list of inventory items with optional filters
      GET
    • Retrieve an inventory item by ID
      GET
    • Creates a new inventory item
      POST
    • Updates an existing inventory item
      PATCH
    • Bulk update inventory items
      PATCH
  • Warehouse
    • Create a new warehouse
      POST
    • Retrieve a paginated list of warehouses
      GET
    • Update an existing warehouse
      PATCH
    • Retrieve a warehouse by ID
      GET
  • Employee
    • Retrieve a paginated list of employees
      GET
    • Retrieve an employee by ID
      GET
  • Company
    • Retrieve company name by ID
  • WorkOrder
    • Retrieve a work order by ID
    • Retrieve a paginated list of work orders
    • Retrieve work orders at a given address
  • Invoice
    • Retrieve an invoice by ID
      GET
    • Retrieve a paginated list of invoices
      GET
  • Task
    • Retrieve a list of tasks
    • Retrieve a task bundle by ID
  • Webhook
    • Register a webhook endpoint to receive event notifications.
    • Rotate the HMAC signing secret for the registered webhook.
    • Delete the registered webhook for the authenticated account.
  1. Invoice

Retrieve a paginated list of invoices

GET
/v1/invoices
Returns a paginated list of invoices for the authenticated partner account, sorted by invoice date. Line-item details are not included; use GET /v1/invoices/{invoiceId} to retrieve full invoice detail.
Required scope: invoices:read

Request

Authorization
or
Query Params

Responses

🟢200
application/json
Invoice list retrieved successfully.
Bodyapplication/json

🟠400
🟠401
🟠403
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://dev.api.fieldedge.com/open-api/v1/invoices?offset=&limit=&sort='
Response Response Example
200 - response
{
    "total": 2,
    "limit": 20,
    "offset": 0,
    "data": [
        {
            "invoiceId": "a1b2c3d4-5e6f-47a8-9b0c-d1e2f3a4b5c6",
            "workOrderId": "a1b2c3d4-5e6f-47a8-9b0c-d1e2f3a4b5c6",
            "customerId": "b2c3d4e5-f6a7-48b9-0c1d-e2f3a4b5c6d7",
            "customerName": "Acme Corp",
            "dateAdded": "2024-06-15T00:00:00Z"
        },
        {
            "invoiceId": "d4e5f6a7-b8c9-40d1-2e3f-a4b5c6d7e8f9",
            "workOrderId": "d4e5f6a7-b8c9-40d1-2e3f-a4b5c6d7e8f9",
            "customerId": null,
            "customerName": "Walk-in Customer",
            "dateAdded": "2024-05-20T00:00:00Z"
        }
    ]
}
Modified at 2026-07-01 10:25:15
Previous
Retrieve an invoice by ID
Next
Retrieve a list of tasks
Built with