Show Consumer Profile detail
curl --request GET \
--url https://api.creditor.younegotiate.com/manage-consumers/{consumer} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.creditor.younegotiate.com/manage-consumers/{consumer}"
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/manage-consumers/{consumer}', 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/manage-consumers/{consumer}",
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/manage-consumers/{consumer}"
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/manage-consumers/{consumer}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.creditor.younegotiate.com/manage-consumers/{consumer}")
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,
"summary": {
"account_name": "<string>",
"placement_date": "2023-12-25",
"expiry_date": "2023-12-25",
"original_account_number": "<string>",
"current_account_number": "<string>",
"consumer_login_url": "<string>"
},
"account_profile": {
"displays_active_account_status": true,
"reason_label": "<string>",
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"dob": "2023-12-25",
"last4ssn": "<string>",
"beginning_balance": "<string>",
"current_balance": "<string>"
},
"communication_profile": {
"has_email": true,
"has_mobile": true,
"has_communication_profile": true,
"is_communication_updated": true,
"email_permission": true,
"text_permission": true,
"can_send_email": true,
"can_send_sms": true,
"contact": {
"email": "jsmith@example.com",
"mobile": "<string>"
}
},
"negotiation_summary": {
"status": {
"value": "<string>",
"label": "<string>",
"detail_label": "Active Payment Plan",
"list_label": "Active Payment Plan",
"tooltip": "<string>",
"is_expired": true
},
"current_offer_source": "Individual",
"approved_by": "Auto",
"settled_in_full": {
"amount": "<string>",
"date": "2023-12-25"
},
"active_payment_plan": {
"amount": "<string>",
"monthly_amount": "<string>",
"installment_type": "<string>"
}
},
"offer_terms": {
"offer_source": "<string>",
"pif_discount_percent": 123,
"ppa_discount_percent": 123,
"min_monthly_pay_percent": 123,
"max_days_first_pay": 123,
"amount_to_pay_when_pif": 123,
"amount_to_pay_when_ppa": 123,
"min_monthly_amount": 123
},
"active_negotiation": {
"id": 123,
"negotiation_type": "<string>",
"negotiation_type_label": "<string>",
"pay_term_type": "<string>",
"pay_term_type_label": "<string>",
"active_negotiation": true,
"offer_accepted": true,
"counter_offer_accepted": true,
"can_respond": true,
"is_not_editable": true,
"consumer_offer_sent_at": "2023-11-07T05:31:56Z",
"creditor_counter_offer_sent_at": "2023-11-07T05:31:56Z"
},
"available_actions": [
{
"label": "<string>",
"enabled": true,
"fields": [
"<string>"
]
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}{
"message": "<string>"
}{
"message": "An active membership is required."
}{
"message": "<string>"
}Show Consumer Profile detail
Return the Consumer Profiles detail page payload for one consumer account, scoped to the authenticated creditor company and assigned sub-account when applicable. The response includes semantic display sections, offer terms, active negotiation summary, and action keys for frontend rendering.
GET
/
manage-consumers
/
{consumer}
Show Consumer Profile detail
curl --request GET \
--url https://api.creditor.younegotiate.com/manage-consumers/{consumer} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.creditor.younegotiate.com/manage-consumers/{consumer}"
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/manage-consumers/{consumer}', 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/manage-consumers/{consumer}",
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/manage-consumers/{consumer}"
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/manage-consumers/{consumer}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.creditor.younegotiate.com/manage-consumers/{consumer}")
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,
"summary": {
"account_name": "<string>",
"placement_date": "2023-12-25",
"expiry_date": "2023-12-25",
"original_account_number": "<string>",
"current_account_number": "<string>",
"consumer_login_url": "<string>"
},
"account_profile": {
"displays_active_account_status": true,
"reason_label": "<string>",
"first_name": "<string>",
"middle_name": "<string>",
"last_name": "<string>",
"full_name": "<string>",
"dob": "2023-12-25",
"last4ssn": "<string>",
"beginning_balance": "<string>",
"current_balance": "<string>"
},
"communication_profile": {
"has_email": true,
"has_mobile": true,
"has_communication_profile": true,
"is_communication_updated": true,
"email_permission": true,
"text_permission": true,
"can_send_email": true,
"can_send_sms": true,
"contact": {
"email": "jsmith@example.com",
"mobile": "<string>"
}
},
"negotiation_summary": {
"status": {
"value": "<string>",
"label": "<string>",
"detail_label": "Active Payment Plan",
"list_label": "Active Payment Plan",
"tooltip": "<string>",
"is_expired": true
},
"current_offer_source": "Individual",
"approved_by": "Auto",
"settled_in_full": {
"amount": "<string>",
"date": "2023-12-25"
},
"active_payment_plan": {
"amount": "<string>",
"monthly_amount": "<string>",
"installment_type": "<string>"
}
},
"offer_terms": {
"offer_source": "<string>",
"pif_discount_percent": 123,
"ppa_discount_percent": 123,
"min_monthly_pay_percent": 123,
"max_days_first_pay": 123,
"amount_to_pay_when_pif": 123,
"amount_to_pay_when_ppa": 123,
"min_monthly_amount": 123
},
"active_negotiation": {
"id": 123,
"negotiation_type": "<string>",
"negotiation_type_label": "<string>",
"pay_term_type": "<string>",
"pay_term_type_label": "<string>",
"active_negotiation": true,
"offer_accepted": true,
"counter_offer_accepted": true,
"can_respond": true,
"is_not_editable": true,
"consumer_offer_sent_at": "2023-11-07T05:31:56Z",
"creditor_counter_offer_sent_at": "2023-11-07T05:31:56Z"
},
"available_actions": [
{
"label": "<string>",
"enabled": true,
"fields": [
"<string>"
]
}
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}{
"message": "<string>"
}{
"message": "An active membership is required."
}{
"message": "<string>"
}Last modified on July 20, 2026
Was this page helpful?
⌘I

