🔵GET - Address

Retrieves a list of addresses

GET /api/customers/address

This endpoint allows you to retrieve either a list of all addresses, an address list of a specific customer or a specific address

Query Parameters

Name
Type
Description

customer_id

string

Must be greater than 0

address_id

string

Must be greater than 0

{
    "address": [
        {
            "AddressID": 30,
            "CustomerID": 26,
            "FirstName": "aaaaa",
            "LastName": "bbbbb",
            "Company": null,
            "AddressLine1": "address1",
            "AddressLine2": "address2",
            "ZIPCode": "3333-333",
            "City": "Viseu",
            "CountryID": 21,
            "PhoneNumber": "987654321",
            "DefaultAddress": 0,
            "CreatedBy": 17,
            "CreatedAt": "2023-01-13T10:14:48.000Z",
            "LastUpdateBy": 16,
            "LastUpdateAt": "2023-01-13T10:14:48.000Z"
        }
    ]
}

Last updated