Last updated 3 years ago
DELETE https://api.complycube.com/v1/addresses/:id
DELETE
https://api.complycube.com/v1/addresses/:id
Deletes an existing address.
curl -X DELETE https://api.complycube.com/v1/addresses/{:addressId} \ -H 'Authorization: <YOUR_API_KEY>'
const { ComplyCube } = require("@complycube/api"); const complycube = new ComplyCube({ apiKey: "<YOUR_API_KEY>" }); await complycube.address.delete("ADDRESS_ID");
from complycube import ComplyCubeClient cc_api = ComplyCubeClient(api_key='<YOUR API KEY>') cc_api.addresses.delete('ADDRESS_ID')
use ComplyCube\ComplyCubeClient; $ccapi = new ComplyCubeClient('<YOUR API KEY>'); $ccapi->address()->delete('ADDRESS_ID');
id
string
The ID of the address.
Authorization
The live or sandbox API key.