Entities Address Service

Back

Overview

The Entities Address Service manages addresses associated with entities (customers or suppliers).
Addresses can be used for billing, shipping, or general contact purposes.

Each entity address includes:

All operations are tenant-aware and audited.


Endpoints

Back to Entities

GET

/api/v1/EntitiesAddress/GetEntityAddressById/{id}

Returns a single address by its ID.

Route parameters:

Behavior:

Response:

Authorization:


GET

/api/v1/EntitiesAddress/GetEntityAddressByEntityID/{entityId}

Returns all addresses for a specific entity.

Route parameters:

Behavior:

Response:

Authorization:


POST

/api/v1/EntitiesAddress/AddNewEntityAddress

Creates a new entity address.

Request body (AddressModel):

Behavior:

Errors:

Response:

Authorization:


PUT

/api/v1/EntitiesAddress/UpdateEntityAddressById/{id}

Updates an existing entity address.

Route parameters:

Request body (AddressModel):

Behavior:

Errors:

Response:

Authorization:


DELETE

/api/v1/EntitiesAddress/DeleteEntityAddressById/{id}

Deletes an entity address by its ID.

Route parameters:

Behavior:

Errors:

Response:

Authorization:


Notes