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.
Authorization
bearerAuth 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": {}
}List all invoices GET
This endpoint allows you to retrieve a paginated list of all your invoices. By default, a maximum of fifteen invoices are shown per page.
Create an invoice POST
This endpoint allows you to create a new invoice. See the code examples for how to create a new invoice with the SellApp API.