PUT api/Customer/Address/Edit?addressId={addressId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| addressId | integer |
Required |
Body Parameters
CustomerAddressEditDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| label | string |
None. |
|
| address_line | string |
None. |
|
| latitude | decimal number |
None. |
|
| longitude | decimal number |
None. |
|
| updated_at | date |
None. |
Request Formats
application/json, text/json
Sample:
{
"label": "sample string 1",
"address_line": "sample string 2",
"latitude": 1.0,
"longitude": 1.0,
"updated_at": "2026-09-01T13:58:17.2658787+05:30"
}
application/xml, text/xml
Sample:
<CustomerAddressEditDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Caremate_API.Models.DTOs.Customer"> <address_line>sample string 2</address_line> <label>sample string 1</label> <latitude>1</latitude> <longitude>1</longitude> <updated_at>2026-09-01T13:58:17.2658787+05:30</updated_at> </CustomerAddressEditDTO>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |