Address Management
The Address Management section provides functionalities for adding, updating, and managing delivery addresses. It ensures that your customers can specify where they want their purchases delivered and manage their multiple addresses if needed.
Included APIs:
Add Delivery Address: Lets users add a new delivery address, useful for users who have multiple shipping locations.
Get Address Details: Retrieves all saved addresses for a user, allowing them to choose a shipping address during checkout.
Update Address: Allows users to modify an existing address, keeping their delivery information up to date.
Delete Address: Users can remove an unwanted address, simplifying their address list.
Set Default Address: Designates one of the saved addresses as the default, streamlining the checkout process by pre-selecting the user's preferred shipping address.
1. Add Delivery Address
Endpoint:
POST /api/Address/AddAddress
Purpose: Adds a new delivery address for the user.
Request Body:
Response:
Status 200: Address added successfully.
2. Get Address Details
Endpoint:
GET /api/Address/GetAddresses
Purpose: Retrieves all saved addresses for a given user, allowing them to manage and select from multiple addresses easily. This API is particularly useful for users with multiple delivery locations or those looking to verify their saved addresses.
Request Parameters:
Type:
UserId
Values:
int
(The user's unique identifier)
Response:
3. Update Address
Endpoint:
POST /api/Address/UpdateAddress
Purpose: Allows users to edit their saved addresses, ensuring their delivery information is always accurate and up-to-date. This API is crucial for maintaining the integrity of user data and facilitating smooth delivery processes.
Request Details:
Method: POST
URL:
api/Address/UpdateAddress
Body:
Response:
4. Delete Delivery Address
Endpoint:
POST /api/Address/DeleteAddress
Purpose: Allows for the removal of a user's saved address from their account, ensuring users can manage their address book effectively.
Request Body:
Response:
5. Set Default Address
POST
/api/Address/SetDefaultAddress
Purpose: Designates a specific address as the default for shipping, streamlining the checkout process.
Request Body:
Response:
Last updated