Table of Contents
The “set active card” API allows users to set one of their saved payment cards as the active card to use for transactions. This API requires the user to provide their user ID and the ID of the card they wish to set as active. The response will indicate whether the operation was successful or not.
Endpoint #
The Voomerr Get Address endpoint is POST https://admin.voomerr.com/api/delete_address.php
Parameters #
Parameter | Type | Required | Description |
---|---|---|---|
address_id | string | Yes | The unique identifier of the address to be deleted. |
Response:
Parameter | Type | Description |
---|---|---|
status_code | integer | The HTTP status code of the response. |
message | string | A message indicating whether the operation was successful or not. |
Example Request #
json
POST https://admin.voomerr.com/api/delete_address.php
{
"address_id": "1234"
}
Example Response #
json
{
"status_code": 200,
"message": "Address deleted successfully."
}