Show account settings
curl --request GET \
--url https://api.creditor.younegotiate.com/account-settings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.creditor.younegotiate.com/account-settings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.creditor.younegotiate.com/account-settings', 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.creditor.younegotiate.com/account-settings",
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.creditor.younegotiate.com/account-settings"
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.creditor.younegotiate.com/account-settings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.creditor.younegotiate.com/account-settings")
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": {
"id": 123,
"contact_name": "<string>",
"email": "jsmith@example.com",
"email_verified_at": "2023-11-07T05:31:56Z",
"image": "<string>",
"company": {
"id": 123,
"company_name": "<string>",
"dba_name": "<string>",
"company_phone": "<string>",
"business_category": "<string>",
"business_category_label": "<string>",
"debt_type": "<string>",
"fed_tax_id": "<string>",
"is_verified_tin": true,
"timezone": "<string>",
"from_time": "9:00 AM",
"to_time": "5:00 PM",
"from_day": 3,
"to_day": 3,
"url": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"portal_badge": "<string>"
},
"personalized_logo": {
"effective_logo": {
"primary_color": "<string>",
"secondary_color": "<string>",
"size": 123,
"id": 123
},
"links": {
"consumer_url": "<string>",
"qr_code_url": "<string>",
"embed": {
"href": "<string>",
"primary_color": "<string>",
"secondary_color": "<string>",
"size": 123
}
}
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"meta": {
"options": {
"business_categories": [
{
"value": "<string>",
"label": "<string>"
}
],
"debt_types": [
{
"value": "<string>",
"label": "<string>"
}
],
"timezones": [
{
"value": "<string>",
"label": "<string>"
}
],
"days": [
{
"value": "<string>",
"label": "<string>"
}
]
}
}
}{
"message": "<string>"
}{
"message": "An active membership is required."
}Show account settings
Return the authenticated verified creditor account settings payload, including company operating-hour options and cached effective personalized-logo metadata. Use this endpoint to bootstrap authenticated creditor profile/header branding instead of calling the Logo & Links settings endpoint on every layout render.
GET
/
account-settings
Show account settings
curl --request GET \
--url https://api.creditor.younegotiate.com/account-settings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.creditor.younegotiate.com/account-settings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.creditor.younegotiate.com/account-settings', 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.creditor.younegotiate.com/account-settings",
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.creditor.younegotiate.com/account-settings"
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.creditor.younegotiate.com/account-settings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.creditor.younegotiate.com/account-settings")
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": {
"id": 123,
"contact_name": "<string>",
"email": "jsmith@example.com",
"email_verified_at": "2023-11-07T05:31:56Z",
"image": "<string>",
"company": {
"id": 123,
"company_name": "<string>",
"dba_name": "<string>",
"company_phone": "<string>",
"business_category": "<string>",
"business_category_label": "<string>",
"debt_type": "<string>",
"fed_tax_id": "<string>",
"is_verified_tin": true,
"timezone": "<string>",
"from_time": "9:00 AM",
"to_time": "5:00 PM",
"from_day": 3,
"to_day": 3,
"url": "<string>",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"portal_badge": "<string>"
},
"personalized_logo": {
"effective_logo": {
"primary_color": "<string>",
"secondary_color": "<string>",
"size": 123,
"id": 123
},
"links": {
"consumer_url": "<string>",
"qr_code_url": "<string>",
"embed": {
"href": "<string>",
"primary_color": "<string>",
"secondary_color": "<string>",
"size": 123
}
}
},
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
},
"meta": {
"options": {
"business_categories": [
{
"value": "<string>",
"label": "<string>"
}
],
"debt_types": [
{
"value": "<string>",
"label": "<string>"
}
],
"timezones": [
{
"value": "<string>",
"label": "<string>"
}
],
"days": [
{
"value": "<string>",
"label": "<string>"
}
]
}
}
}{
"message": "<string>"
}{
"message": "An active membership is required."
}Last modified on July 20, 2026
Was this page helpful?
⌘I

