Skip to main content
Version: v2

Invoices

Get All Invoices

This endpoint retrieves all invoices associated to current user.

HTTP Request

GET /invoices

Query Parameters

See pagination

Example

$ curl --request GET --url 'https://app.winesitting.com/api/v2/invoices' \
--header 'Authorization: Bearer YourBearerToken' \
--header 'content-type: application/json'

Get a Specific Invoice

This endpoint retrieves a specific Invoice.

HTTP Request

GET /invoices/{id}

Query Parameters

ParameterDescription
idThe id of the Invoice to retrieve

Example

$ curl --request GET --url 'https://app.winesitting.com/api/v2/invoices/38756' \
--header 'Authorization: Bearer YourBearerToken' \
--header 'content-type: application/json'