ResourcesInvoices

Search invoices

This endpoint is a backward-compatible search endpoint for invoice lookups. It accepts the same filters as the list endpoint, but in a JSON request body instead of query parameters.

This endpoint is a backward-compatible search endpoint for invoice lookups. It accepts the same filters as the list endpoint, but in a JSON request body instead of query parameters.

POST
/v2/invoices/search

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://sell.app/api/v2/invoices/search" \  -H "Content-Type: application/json" \  -d '{}'
{
  "data": [
    {
      "id": 1
    }
  ],
  "links": {},
  "meta": {}
}