An invoice profile represents the legal entity a trip is invoiced to, all Invoices will be Issued on an InvoiceProfile.
The InvoiceProfile object
| Attribute | Type | Description |
|---|---|---|
| id | string | Unique identifier of the invoice profile. |
| name | string | The name of the invoice profile. |
| payment_method_type | string | The chosen payment method. Can hold values such as: You should expect that new payment methods may be added over time. |
| billing_period | string | The billing period used in this specific invoice profile.instantweeklybiweeklymonthly |
| currency | string | The 3 character currency code used.EUR, AUD, CAD, CHF, GBP, SGD, USD |
| billing_information | object | The billing address information. See Billing Information Object. |
Billing information object
| Attribute | Type | Description |
|---|---|---|
| legal_name | string | The name of the legal entity where the invoice is issued to. |
| vat_number | string | The tax id or VAT number of the legal entity. |
| address_line_1 | string | The first line of the address of the legal entity. |
| address_line_2 | string | The second line of the address of the legal entity. |
| city | string | The city of the legal entity. |
| postal_code | string | The postal code of the legal entity. |
| country_name | string | The country name of the legal entity. |
{
"id": "edb6322b-8e11-48e9-8d6f-6402e445e50d",
"name": "MyCompany Ltd",
"payment_method_type": "credit_card",
"billing_period": "weekly",
"currency": "GBP",
"billing_information": {
"legal_name": "MyCompany Ltd",
"vat_number": "GB123456789",
"address_line_1": "199 Bishopsgate",
"address_line_2": "Spitalfields",
"city": "London",
"postal_code": "EC2M 3TY",
"country_name": "United Kingdom"
}
}
