AddressApi
valkyrai-api
All URIs are relative to http://localhost:8080/v1
| Method | HTTP request | Description |
|---|---|---|
| deleteAddress | DELETE AddressApi | Delete a Address. |
deleteAddress
Void
deleteAddress(id)
Delete a Address.
Deletes a specific Address.
Example
Import classes:
import com.valkyrlabs.ApiException;
import com.valkyrlabs.api.AddressApi;
AddressApi apiInstance = new AddressApi();
UUID id = UUID.randomUUID(); // UUID | Unique identifier for the Address.
try {
Void result = apiInstance.deleteAddress(id);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling AddressApi#deleteAddress");
e.printStackTrace();
}
Parameters
| Name | Type | Description | Notes |
|---|---|---|---|
| id | UUID | Unique identifier for the Address. |
Return type
Void
Authorization
No authorization required
HTTP request headers
- Content-Type: Not defined
- Accept: Not defined
getAddress
Address
getAddress(id)
Retrieve a single Address
Retrieves a single Address for a specific uid.