Show portal personalization
curl --request GET \
--url https://api.consumer.younegotiate.com/profile/personalization \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.consumer.younegotiate.com/profile/personalization"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.consumer.younegotiate.com/profile/personalization', 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.consumer.younegotiate.com/profile/personalization",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.consumer.younegotiate.com/profile/personalization"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.consumer.younegotiate.com/profile/personalization")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.consumer.younegotiate.com/profile/personalization")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"configured_logo": {
"id": 123,
"consumer_profile_id": 123,
"primary_color": "#112233",
"secondary_color": "#445566",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"effective_logo": {
"id": 123,
"primary_color": "#0079f2",
"secondary_color": "#000000",
"size": 320
},
"profile_image": {
"name": "<string>",
"url": "https://api.consumer.younegotiate.com/storage/profile-images/consumer.jpg",
"thumbnail_url": "https://api.consumer.younegotiate.com/storage/profile-images/thumbs/consumer.webp"
},
"defaults": {
"primary_color": "#0079f2",
"secondary_color": "#000000",
"size": 320
}
}
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Show portal personalization
Return the authenticated consumer profile’s configured portal colors, effective fallback colors, profile image URLs, and defaults. When consumer_id is supplied, it must belong to the authenticated profile and is used only for subclient/company fallback branding; it is not echoed in the response.
GET
/
profile
/
personalization
Show portal personalization
curl --request GET \
--url https://api.consumer.younegotiate.com/profile/personalization \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.consumer.younegotiate.com/profile/personalization"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.consumer.younegotiate.com/profile/personalization', 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.consumer.younegotiate.com/profile/personalization",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.consumer.younegotiate.com/profile/personalization"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.consumer.younegotiate.com/profile/personalization")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.consumer.younegotiate.com/profile/personalization")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"configured_logo": {
"id": 123,
"consumer_profile_id": 123,
"primary_color": "#112233",
"secondary_color": "#445566",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"effective_logo": {
"id": 123,
"primary_color": "#0079f2",
"secondary_color": "#000000",
"size": 320
},
"profile_image": {
"name": "<string>",
"url": "https://api.consumer.younegotiate.com/storage/profile-images/consumer.jpg",
"thumbnail_url": "https://api.consumer.younegotiate.com/storage/profile-images/thumbs/consumer.webp"
},
"defaults": {
"primary_color": "#0079f2",
"secondary_color": "#000000",
"size": 320
}
}
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Owned account id used to resolve account-specific subclient/company fallback branding when the profile has no saved personalization. The account context is not returned in the response.
Response
Portal personalization settings returned.
Show child attributes
Show child attributes
Last modified on July 19, 2026
Was this page helpful?
⌘I

