POST
/
v1
/
orders
/
invoice
{
    "order_id": "28d816c1-49ed-6173-f5bd-c6beefaf3a41",
    "email": "no-reply@greener-choice.com",
    "invoice_address": {
        "first_name": "Donald",
        "family_name": "Duck",
        "street": "10 Downing Street",
        "city": "London",
        "country": "United Kingdom",
        "zip_code": "SW1A 2AA"
    }
}
{
    "invoice_id": "28d816c1-49ed-6173-f5bd-c6beefaf3a41"
}

Headers

api-key
string
required

Authorisation requires an API key in the header of the request. Please see this page for more information.

Request Fields

order_id
uuid
required

A unique ID assigned to the order. This identifier is used to reference the order within the system.

email
string
required

The email address associated with the order. The invoice PDF will be sent to this email address.

invoice_address
object
required

Response Fields

invoice_id
uuid

A unique ID assigned to the invoice. This identifier is used to reference the invoice within the system.

{
    "order_id": "28d816c1-49ed-6173-f5bd-c6beefaf3a41",
    "email": "no-reply@greener-choice.com",
    "invoice_address": {
        "first_name": "Donald",
        "family_name": "Duck",
        "street": "10 Downing Street",
        "city": "London",
        "country": "United Kingdom",
        "zip_code": "SW1A 2AA"
    }
}
{
    "invoice_id": "28d816c1-49ed-6173-f5bd-c6beefaf3a41"
}