ResourcesInvoices

View invoice deliverables

This endpoint shows the deliverables that have been sent to the customer. If a customer has purchased multiple products, all of the deliverables will be shown.

This endpoint shows the deliverables that have been sent to the customer. If a customer has purchased multiple products, all of the deliverables will be shown.

See the code examples for how to display the deliverables for an existing invoice with the SellApp API.

GET
/v2/invoices/{invoice}/deliverables

Authorization

bearerAuth
AuthorizationBearer <token>

Provide your SellApp API key as a bearer token.

In: header

Path Parameters

invoice*integer

The invoice path parameter.

Response Body

application/json

curl -X GET "https://sell.app/api/v2/invoices/0/deliverables"
{
  "invoice_id": 1,
  "product_variant_id": 1,
  "deliverable": {
    "data": {
      "serials": [
        "YOUR-KEY-HERE-THANKS"
      ]
    },
    "types": [
      "TEXT"
    ]
  }
}