Delete Account
Delete the information for an account with the specified ID.
Body
Query Parameters
Name
Type
Description
DELETE /account/{accountId} HTTP/1.1
Host: api.instantuploader.com
Authorization: Bearer <your_token_or_api_key>
const axios = require('axios');
const accountId = '123456';
axios.delete(`https://api.instantuploader.com/account/${accountId}`, {
headers: {
Authorization: 'Bearer <your_token_or_api_key>',
},
});
<?php
$accountId = '123456';
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => 'https://api.instantuploader.com/account/' . $accountId,
CURLOPT_RETURNTRANSFER => true,
CURLOPT_CUSTOMREQUEST => 'DELETE',
CURLOPT_HTTPHEADER => [
'Authorization: Bearer <your_token_or_api_key>',
],
]);
$response = curl_exec($curl);
curl_close($curl);
Last updated