Skip to main content
GET
/
api
/
organization
/
{organization_uid}
/
invoices
/
customer-filter-options
Get invoice customer filter options
curl --request GET \
  --url https://dev.exante.app/api/organization/{organization_uid}/invoices/customer-filter-options \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "status_code": 200,
  "message": "Success",
  "data": {
    "customers": [
      {
        "uid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
        "name": "<string>"
      }
    ]
  }
}
Use this endpoint to populate searchable customer-select inputs. Results are limited to 10 customers per request.

Authorizations

Authorization
string
header
required

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

Path Parameters

organization_uid
string<uuid>
required

Organization UID

Query Parameters

Optional case-insensitive customer name search.

Response

Customer filter options

status
string
Example:

"success"

status_code
integer
Example:

200

message
string
Example:

"Success"

data
object