Update my profile
curl --request PATCH \
--url https://api.example.com/account/me \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"avatar_rs_id": "<string>",
"date_of_birth": "<string>",
"default_contact_id": "<string>",
"description": "<string>",
"email": "<string>",
"name": "<string>",
"phone": "<string>",
"username": "<string>"
}
'import requests
url = "https://api.example.com/account/me"
payload = {
"avatar_rs_id": "<string>",
"date_of_birth": "<string>",
"default_contact_id": "<string>",
"description": "<string>",
"email": "<string>",
"name": "<string>",
"phone": "<string>",
"username": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
avatar_rs_id: '<string>',
date_of_birth: '<string>',
default_contact_id: '<string>',
description: '<string>',
email: '<string>',
name: '<string>',
phone: '<string>',
username: '<string>'
})
};
fetch('https://api.example.com/account/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.example.com/account/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'avatar_rs_id' => '<string>',
'date_of_birth' => '<string>',
'default_contact_id' => '<string>',
'description' => '<string>',
'email' => '<string>',
'name' => '<string>',
'phone' => '<string>',
'username' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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.example.com/account/me"
payload := strings.NewReader("{\n \"avatar_rs_id\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"default_contact_id\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<api-key>")
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.patch("https://api.example.com/account/me")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"avatar_rs_id\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"default_contact_id\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/account/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"avatar_rs_id\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"default_contact_id\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"avatar_url": "<string>",
"country": "<string>",
"currency": "<string>",
"date_created": "<string>",
"date_of_birth": "<string>",
"date_updated": "<string>",
"default_contact_id": "<string>",
"description": "<string>",
"email": "<string>",
"email_verified": true,
"gender": {
"valid": true
},
"id": "<string>",
"internal_balance": 123,
"name": "<string>",
"phone": "<string>",
"phone_verified": true,
"username": "<string>"
},
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}account
Update my profile
PATCH
/
account
/
me
Update my profile
curl --request PATCH \
--url https://api.example.com/account/me \
--header 'Authorization: <api-key>' \
--header 'Content-Type: application/json' \
--data '
{
"avatar_rs_id": "<string>",
"date_of_birth": "<string>",
"default_contact_id": "<string>",
"description": "<string>",
"email": "<string>",
"name": "<string>",
"phone": "<string>",
"username": "<string>"
}
'import requests
url = "https://api.example.com/account/me"
payload = {
"avatar_rs_id": "<string>",
"date_of_birth": "<string>",
"default_contact_id": "<string>",
"description": "<string>",
"email": "<string>",
"name": "<string>",
"phone": "<string>",
"username": "<string>"
}
headers = {
"Authorization": "<api-key>",
"Content-Type": "application/json"
}
response = requests.patch(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PATCH',
headers: {Authorization: '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
avatar_rs_id: '<string>',
date_of_birth: '<string>',
default_contact_id: '<string>',
description: '<string>',
email: '<string>',
name: '<string>',
phone: '<string>',
username: '<string>'
})
};
fetch('https://api.example.com/account/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.example.com/account/me",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PATCH",
CURLOPT_POSTFIELDS => json_encode([
'avatar_rs_id' => '<string>',
'date_of_birth' => '<string>',
'default_contact_id' => '<string>',
'description' => '<string>',
'email' => '<string>',
'name' => '<string>',
'phone' => '<string>',
'username' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>",
"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.example.com/account/me"
payload := strings.NewReader("{\n \"avatar_rs_id\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"default_contact_id\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\"\n}")
req, _ := http.NewRequest("PATCH", url, payload)
req.Header.Add("Authorization", "<api-key>")
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.patch("https://api.example.com/account/me")
.header("Authorization", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"avatar_rs_id\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"default_contact_id\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/account/me")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Patch.new(url)
request["Authorization"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"avatar_rs_id\": \"<string>\",\n \"date_of_birth\": \"<string>\",\n \"default_contact_id\": \"<string>\",\n \"description\": \"<string>\",\n \"email\": \"<string>\",\n \"name\": \"<string>\",\n \"phone\": \"<string>\",\n \"username\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"avatar_url": "<string>",
"country": "<string>",
"currency": "<string>",
"date_created": "<string>",
"date_of_birth": "<string>",
"date_updated": "<string>",
"default_contact_id": "<string>",
"description": "<string>",
"email": "<string>",
"email_verified": true,
"gender": {
"valid": true
},
"id": "<string>",
"internal_balance": 123,
"name": "<string>",
"phone": "<string>",
"phone_verified": true,
"username": "<string>"
},
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}{
"data": "<unknown>",
"error": {
"code": "<string>",
"http_status": 123,
"message": "<string>"
}
}Authorizations
JWT access token. Format: "Bearer <token>".
Body
application/json
Fields to update (all optional)
Vendor fields
Maximum string length:
500Profile fields
Available options:
Male, Female, Other Account base fields
Available options:
Active, Suspended Required string length:
3 - 30⌘I