InvoiceAddress

List invoice address

The user needs to be logged in to use this endpoint, click here to read more.

Address API for invoice address of given product for customer.

In response is returned address for customer to a specific product.

NB! All data is read from sync data in ConnectID.

SecurityAuthorization_Code
Request
path Parameters
product
required
string <= 12 characters

product code

Responses
200

OK

Response Schema: application/json
object (Name)
object (Address)
payerSameAsCustomer
boolean

It informs if customer and payer is same.

  • true: Payer is same as customer, means customer and payer have same name and address.
  • false: Payer is not same as customer. Customer has a payer.
payerCustomerNumber
required
integer or null

If payerSameAsCustomer is true, this is the payers customer number. If payerSameAsCustomer is false, this is null.

400

Bad Request

429

Too Many Requests

500

Internal Server Error

get/v1/customer/invoiceaddress/{product}
Request samples
Response samples
application/json
{
  • "name": {
    },
  • "address": {
    },
  • "payerSameAsCustomer": true,
  • "payerCustomerNumber": 563457
}