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.
Authorization
bearerAuth Provide your SellApp API key as a bearer token.
In: header
Path Parameters
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"
]
}
}Create a checkout session POST
This endpoint creates a checkout session for a pending invoice.
Mark pending invoice completed PATCH
This endpoint allows you to update a pending invoice's status as completed. If marked as completed, the purchased product(s) would be delivered to the customer's email. See the code examples for how to mark a pending invoice as completed with the SellApp API.