Delete user
curl --request DELETE \
--url https://api.enterprise.sandbox.uphold.com/core/users/me \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"review": {
"reason": "closure-per-user-request",
"note": "User requested account closure"
}
}
'import requests
url = "https://api.enterprise.sandbox.uphold.com/core/users/me"
payload = { "review": {
"reason": "closure-per-user-request",
"note": "User requested account closure"
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
review: {reason: 'closure-per-user-request', note: 'User requested account closure'}
})
};
fetch('https://api.enterprise.sandbox.uphold.com/core/users/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enterprise.sandbox.uphold.com/core/users/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'review' => [
'reason' => 'closure-per-user-request',
'note' => 'User requested account closure'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.enterprise.sandbox.uphold.com/core/users/me"
payload := strings.NewReader("{\n \"review\": {\n \"reason\": \"closure-per-user-request\",\n \"note\": \"User requested account closure\"\n }\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.enterprise.sandbox.uphold.com/core/users/me")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"review\": {\n \"reason\": \"closure-per-user-request\",\n \"note\": \"User requested account closure\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enterprise.sandbox.uphold.com/core/users/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"review\": {\n \"reason\": \"closure-per-user-request\",\n \"note\": \"User requested account closure\"\n }\n}"
response = http.request(request)
puts response.read_bodyUsers
Delete user
Delete an existing user.
DELETE
/
core
/
users
/
me
Delete user
curl --request DELETE \
--url https://api.enterprise.sandbox.uphold.com/core/users/me \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"review": {
"reason": "closure-per-user-request",
"note": "User requested account closure"
}
}
'import requests
url = "https://api.enterprise.sandbox.uphold.com/core/users/me"
payload = { "review": {
"reason": "closure-per-user-request",
"note": "User requested account closure"
} }
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.delete(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'DELETE',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
review: {reason: 'closure-per-user-request', note: 'User requested account closure'}
})
};
fetch('https://api.enterprise.sandbox.uphold.com/core/users/me', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.enterprise.sandbox.uphold.com/core/users/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "DELETE",
CURLOPT_POSTFIELDS => json_encode([
'review' => [
'reason' => 'closure-per-user-request',
'note' => 'User requested account closure'
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.enterprise.sandbox.uphold.com/core/users/me"
payload := strings.NewReader("{\n \"review\": {\n \"reason\": \"closure-per-user-request\",\n \"note\": \"User requested account closure\"\n }\n}")
req, _ := http.NewRequest("DELETE", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.delete("https://api.enterprise.sandbox.uphold.com/core/users/me")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"review\": {\n \"reason\": \"closure-per-user-request\",\n \"note\": \"User requested account closure\"\n }\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.enterprise.sandbox.uphold.com/core/users/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Delete.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"review\": {\n \"reason\": \"closure-per-user-request\",\n \"note\": \"User requested account closure\"\n }\n}"
response = http.request(request)
puts response.read_body
Deleting a user is a sensitive action that must be taken with caution. It’s reversible but it will require a manual process to restore the user.
The platform will not allow you to delete a user if they have pending transactions or a positive balance.
In case of a positive balance, you must ask the user to withdraw their funds before proceeding with the deletion.
If a deposit is received to an account of a deleted user, the funds will be kept captive and a manual process to release them will be required.
Was this page helpful?
⌘I