Update company profile
curl --request PUT \
--url https://api.creditor.younegotiate.com/account-profile/company \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"creditor_profile_id": 42,
"company_name": "ABC Collections",
"dba_name": "ABC Collections",
"company_email": "billing@abc-collections.example",
"company_phone": "2125550100",
"business_category": "collection_agency",
"debt_type": "consumer",
"fed_tax_id": "123456789",
"is_verified_tin": true,
"timezone": "EST",
"from_time": "9:00 AM",
"to_time": "5:00 PM",
"from_day": 1,
"to_day": 5,
"url": "https://abc-collections.example",
"address": "100 Main Street",
"address2": "Suite 200",
"city": "New York",
"state": "NY",
"zip": "10001",
"attestation_accepted": true
}
'import requests
url = "https://api.creditor.younegotiate.com/account-profile/company"
payload = {
"creditor_profile_id": 42,
"company_name": "ABC Collections",
"dba_name": "ABC Collections",
"company_email": "billing@abc-collections.example",
"company_phone": "2125550100",
"business_category": "collection_agency",
"debt_type": "consumer",
"fed_tax_id": "123456789",
"is_verified_tin": True,
"timezone": "EST",
"from_time": "9:00 AM",
"to_time": "5:00 PM",
"from_day": 1,
"to_day": 5,
"url": "https://abc-collections.example",
"address": "100 Main Street",
"address2": "Suite 200",
"city": "New York",
"state": "NY",
"zip": "10001",
"attestation_accepted": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
creditor_profile_id: 42,
company_name: 'ABC Collections',
dba_name: 'ABC Collections',
company_email: 'billing@abc-collections.example',
company_phone: '2125550100',
business_category: 'collection_agency',
debt_type: 'consumer',
fed_tax_id: '123456789',
is_verified_tin: true,
timezone: 'EST',
from_time: '9:00 AM',
to_time: '5:00 PM',
from_day: 1,
to_day: 5,
url: 'https://abc-collections.example',
address: '100 Main Street',
address2: 'Suite 200',
city: 'New York',
state: 'NY',
zip: '10001',
attestation_accepted: true
})
};
fetch('https://api.creditor.younegotiate.com/account-profile/company', 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-profile/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'creditor_profile_id' => 42,
'company_name' => 'ABC Collections',
'dba_name' => 'ABC Collections',
'company_email' => 'billing@abc-collections.example',
'company_phone' => '2125550100',
'business_category' => 'collection_agency',
'debt_type' => 'consumer',
'fed_tax_id' => '123456789',
'is_verified_tin' => true,
'timezone' => 'EST',
'from_time' => '9:00 AM',
'to_time' => '5:00 PM',
'from_day' => 1,
'to_day' => 5,
'url' => 'https://abc-collections.example',
'address' => '100 Main Street',
'address2' => 'Suite 200',
'city' => 'New York',
'state' => 'NY',
'zip' => '10001',
'attestation_accepted' => true
]),
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.creditor.younegotiate.com/account-profile/company"
payload := strings.NewReader("{\n \"creditor_profile_id\": 42,\n \"company_name\": \"ABC Collections\",\n \"dba_name\": \"ABC Collections\",\n \"company_email\": \"billing@abc-collections.example\",\n \"company_phone\": \"2125550100\",\n \"business_category\": \"collection_agency\",\n \"debt_type\": \"consumer\",\n \"fed_tax_id\": \"123456789\",\n \"is_verified_tin\": true,\n \"timezone\": \"EST\",\n \"from_time\": \"9:00 AM\",\n \"to_time\": \"5:00 PM\",\n \"from_day\": 1,\n \"to_day\": 5,\n \"url\": \"https://abc-collections.example\",\n \"address\": \"100 Main Street\",\n \"address2\": \"Suite 200\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip\": \"10001\",\n \"attestation_accepted\": true\n}")
req, _ := http.NewRequest("PUT", 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.put("https://api.creditor.younegotiate.com/account-profile/company")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"creditor_profile_id\": 42,\n \"company_name\": \"ABC Collections\",\n \"dba_name\": \"ABC Collections\",\n \"company_email\": \"billing@abc-collections.example\",\n \"company_phone\": \"2125550100\",\n \"business_category\": \"collection_agency\",\n \"debt_type\": \"consumer\",\n \"fed_tax_id\": \"123456789\",\n \"is_verified_tin\": true,\n \"timezone\": \"EST\",\n \"from_time\": \"9:00 AM\",\n \"to_time\": \"5:00 PM\",\n \"from_day\": 1,\n \"to_day\": 5,\n \"url\": \"https://abc-collections.example\",\n \"address\": \"100 Main Street\",\n \"address2\": \"Suite 200\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip\": \"10001\",\n \"attestation_accepted\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.creditor.younegotiate.com/account-profile/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"creditor_profile_id\": 42,\n \"company_name\": \"ABC Collections\",\n \"dba_name\": \"ABC Collections\",\n \"company_email\": \"billing@abc-collections.example\",\n \"company_phone\": \"2125550100\",\n \"business_category\": \"collection_agency\",\n \"debt_type\": \"consumer\",\n \"fed_tax_id\": \"123456789\",\n \"is_verified_tin\": true,\n \"timezone\": \"EST\",\n \"from_time\": \"9:00 AM\",\n \"to_time\": \"5:00 PM\",\n \"from_day\": 1,\n \"to_day\": 5,\n \"url\": \"https://abc-collections.example\",\n \"address\": \"100 Main Street\",\n \"address2\": \"Suite 200\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip\": \"10001\",\n \"attestation_accepted\": true\n}"
response = http.request(request)
puts response.read_body{
"message": "Company profile updated successfully!",
"data": {
"id": 123,
"creditor_profile_id": 123,
"company_name": "<string>",
"dba_name": "<string>",
"company_email": "jsmith@example.com",
"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>",
"is_completed": true,
"creditor_profile": {
"id": 123,
"code": "<string>",
"company_name": "<string>",
"company_phone": "<string>",
"company_email": "jsmith@example.com",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"url": "<string>",
"passthrough": null
},
"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": "<string>",
"errors": {}
}Update company profile
Update company profile setup details, optionally claim an imported creditor profile, and record the creditor attestation.
PUT
/
account-profile
/
company
Update company profile
curl --request PUT \
--url https://api.creditor.younegotiate.com/account-profile/company \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"creditor_profile_id": 42,
"company_name": "ABC Collections",
"dba_name": "ABC Collections",
"company_email": "billing@abc-collections.example",
"company_phone": "2125550100",
"business_category": "collection_agency",
"debt_type": "consumer",
"fed_tax_id": "123456789",
"is_verified_tin": true,
"timezone": "EST",
"from_time": "9:00 AM",
"to_time": "5:00 PM",
"from_day": 1,
"to_day": 5,
"url": "https://abc-collections.example",
"address": "100 Main Street",
"address2": "Suite 200",
"city": "New York",
"state": "NY",
"zip": "10001",
"attestation_accepted": true
}
'import requests
url = "https://api.creditor.younegotiate.com/account-profile/company"
payload = {
"creditor_profile_id": 42,
"company_name": "ABC Collections",
"dba_name": "ABC Collections",
"company_email": "billing@abc-collections.example",
"company_phone": "2125550100",
"business_category": "collection_agency",
"debt_type": "consumer",
"fed_tax_id": "123456789",
"is_verified_tin": True,
"timezone": "EST",
"from_time": "9:00 AM",
"to_time": "5:00 PM",
"from_day": 1,
"to_day": 5,
"url": "https://abc-collections.example",
"address": "100 Main Street",
"address2": "Suite 200",
"city": "New York",
"state": "NY",
"zip": "10001",
"attestation_accepted": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'PUT',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
creditor_profile_id: 42,
company_name: 'ABC Collections',
dba_name: 'ABC Collections',
company_email: 'billing@abc-collections.example',
company_phone: '2125550100',
business_category: 'collection_agency',
debt_type: 'consumer',
fed_tax_id: '123456789',
is_verified_tin: true,
timezone: 'EST',
from_time: '9:00 AM',
to_time: '5:00 PM',
from_day: 1,
to_day: 5,
url: 'https://abc-collections.example',
address: '100 Main Street',
address2: 'Suite 200',
city: 'New York',
state: 'NY',
zip: '10001',
attestation_accepted: true
})
};
fetch('https://api.creditor.younegotiate.com/account-profile/company', 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-profile/company",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "PUT",
CURLOPT_POSTFIELDS => json_encode([
'creditor_profile_id' => 42,
'company_name' => 'ABC Collections',
'dba_name' => 'ABC Collections',
'company_email' => 'billing@abc-collections.example',
'company_phone' => '2125550100',
'business_category' => 'collection_agency',
'debt_type' => 'consumer',
'fed_tax_id' => '123456789',
'is_verified_tin' => true,
'timezone' => 'EST',
'from_time' => '9:00 AM',
'to_time' => '5:00 PM',
'from_day' => 1,
'to_day' => 5,
'url' => 'https://abc-collections.example',
'address' => '100 Main Street',
'address2' => 'Suite 200',
'city' => 'New York',
'state' => 'NY',
'zip' => '10001',
'attestation_accepted' => true
]),
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.creditor.younegotiate.com/account-profile/company"
payload := strings.NewReader("{\n \"creditor_profile_id\": 42,\n \"company_name\": \"ABC Collections\",\n \"dba_name\": \"ABC Collections\",\n \"company_email\": \"billing@abc-collections.example\",\n \"company_phone\": \"2125550100\",\n \"business_category\": \"collection_agency\",\n \"debt_type\": \"consumer\",\n \"fed_tax_id\": \"123456789\",\n \"is_verified_tin\": true,\n \"timezone\": \"EST\",\n \"from_time\": \"9:00 AM\",\n \"to_time\": \"5:00 PM\",\n \"from_day\": 1,\n \"to_day\": 5,\n \"url\": \"https://abc-collections.example\",\n \"address\": \"100 Main Street\",\n \"address2\": \"Suite 200\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip\": \"10001\",\n \"attestation_accepted\": true\n}")
req, _ := http.NewRequest("PUT", 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.put("https://api.creditor.younegotiate.com/account-profile/company")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"creditor_profile_id\": 42,\n \"company_name\": \"ABC Collections\",\n \"dba_name\": \"ABC Collections\",\n \"company_email\": \"billing@abc-collections.example\",\n \"company_phone\": \"2125550100\",\n \"business_category\": \"collection_agency\",\n \"debt_type\": \"consumer\",\n \"fed_tax_id\": \"123456789\",\n \"is_verified_tin\": true,\n \"timezone\": \"EST\",\n \"from_time\": \"9:00 AM\",\n \"to_time\": \"5:00 PM\",\n \"from_day\": 1,\n \"to_day\": 5,\n \"url\": \"https://abc-collections.example\",\n \"address\": \"100 Main Street\",\n \"address2\": \"Suite 200\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip\": \"10001\",\n \"attestation_accepted\": true\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.creditor.younegotiate.com/account-profile/company")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Put.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"creditor_profile_id\": 42,\n \"company_name\": \"ABC Collections\",\n \"dba_name\": \"ABC Collections\",\n \"company_email\": \"billing@abc-collections.example\",\n \"company_phone\": \"2125550100\",\n \"business_category\": \"collection_agency\",\n \"debt_type\": \"consumer\",\n \"fed_tax_id\": \"123456789\",\n \"is_verified_tin\": true,\n \"timezone\": \"EST\",\n \"from_time\": \"9:00 AM\",\n \"to_time\": \"5:00 PM\",\n \"from_day\": 1,\n \"to_day\": 5,\n \"url\": \"https://abc-collections.example\",\n \"address\": \"100 Main Street\",\n \"address2\": \"Suite 200\",\n \"city\": \"New York\",\n \"state\": \"NY\",\n \"zip\": \"10001\",\n \"attestation_accepted\": true\n}"
response = http.request(request)
puts response.read_body{
"message": "Company profile updated successfully!",
"data": {
"id": 123,
"creditor_profile_id": 123,
"company_name": "<string>",
"dba_name": "<string>",
"company_email": "jsmith@example.com",
"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>",
"is_completed": true,
"creditor_profile": {
"id": 123,
"code": "<string>",
"company_name": "<string>",
"company_phone": "<string>",
"company_email": "jsmith@example.com",
"address": "<string>",
"address2": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"url": "<string>",
"passthrough": null
},
"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": "<string>",
"errors": {}
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Required string length:
3 - 50US phone number.
Federal tax ID. Hyphens are accepted by the backend and normalized before validation.
Pattern:
^\d{9}$Must be accepted after the TIN verification endpoint confirms the company details.
Maximum string length:
5Pattern:
^\d{1,2}:\d{2} (AM|PM)$Example:
"9:00 AM"
Pattern:
^\d{1,2}:\d{2} (AM|PM)$Example:
"5:00 PM"
Required range:
0 <= x <= 6Required range:
0 <= x <= 6Required string length:
2 - 100Required string length:
2 - 50Required string length:
2Pattern:
^\d{5}(?:-\d{4})?$Imported creditor profile ID to claim during setup.
Required string length:
3 - 50Maximum string length:
50Maximum string length:
100Maximum string length:
50Required string length:
2 - 100Last modified on July 20, 2026
Was this page helpful?
⌘I

