PUT Person/{id}
Some tooltip text!
• 26 minutes to read
• 26 minutes to read
PUT /api/v1/Person/{id}
Updates the existing PersonEntity
Path Part | Type | Description |
---|---|---|
id | int32 | The PersonEntity id to update. Required |
Query String Parameters
Parameter Name | Type | Description |
---|---|---|
$select | string | Optional comma separated list of properties to include in the result. Other fields are then nulled out to reduce payload size: "Name,department,category" Default = show all fields. |
PUT /api/v1/Person/{id}?$select=name,department,category/id
Request Headers
Parameter Name | Description |
---|---|
Authorization | Supports 'Basic', 'SoTicket' and 'Bearer' schemes, depending on installation type. |
X-XSRF-TOKEN | If not using Authorization header, you must provide XSRF value from cookie or hidden input field |
Content-Type | Content-type of the request body: application/json , text/json , application/xml , text/xml , application/x-www-form-urlencoded , application/json-patch+json , application/merge-patch+json |
Accept | Content-type(s) you would like the response in: application/json , text/json , application/xml , text/xml , application/json-patch+json , application/merge-patch+json |
Accept-Language | Convert string references and multi-language values into a specified language (iso2) code. |
SO-Language | Convert string references and multi-language values into a specified language (iso2) code. Overrides Accept-Language value. |
SO-Culture | Number, date formatting in a specified culture (iso2 language) code. Partially overrides SO-Language/Accept-Language value. Ignored if no Language set. |
SO-TimeZone | Specify the timezone code that you would like date/time responses converted to. |
SO-AppToken | The application token that identifies the partner app. Used when calling Online WebAPI from a server. |
Request Body: entity
The PersonEntity to be saved.
Property Name | Type | Description |
---|---|---|
PersonId | Integer | Primary key |
Firstname | String | First name |
MiddleName | String | Middle name or 'van' etc. |
Lastname | String | Last name |
Mrmrs | String | e.g. Mrs sex_title |
Title | String | Title |
UpdatedDate | String | Last updated date in UTC. |
CreatedDate | String | Registered date in UTC. |
BirthDate | String | The Person birth date as UTC Date. Year 1 = Null. Year 2 = unknown year. |
CreatedBy | Associate | The user that created the person object |
Emails | Array | A collection of the person's emails |
Description | String | The actual text, max 2047 significant characters even though it is stored as a larger data type on some databases |
IsAssociate | Boolean | Checks if the person object is an associate. The property is read-only. |
PrivatePhones | Array | Returns a collection of phone numbers that belong to the contact person. |
Faxes | Array | Returns a collection of fax numbers that belong to the contact person. |
MobilePhones | Array | Returns a collection of mobile phone numbers that belong to the contact person. |
OfficePhones | Array | Returns a collection of office phone numbers that belong to the contact person. |
OtherPhones | Array | Returns a collection of pagers that belong to the contact person. |
Position | Position | The position. This is a predefined SuperOffice value, different from Title |
UpdatedBy | Associate | The person that last updated the person object |
Contact | Contact | The contact the contact person is registered on. This is required unless the 'MandatoryContactOnPerson' preference is set. |
Country | Country | The country this contact person is located in. |
Interests | Array | The person's available and selected interests. |
PersonNumber | String | Alphanumeric user field |
FullName | String | The person's full name localized to the current culture/country. (internal name used in clients for employees) |
NoMailing | Boolean | Spam filter. Indicates if this person should retrieve advertising. |
UsePersonAddress | Boolean | True if the person's address should be used as mailing address, instead of the contact's address. |
Retired | Boolean | True if the user is retired and should have no rights, not appear in lists, etc. |
Urls | Array | The urls related to this person. |
FormalName | String | Get formal name for a person, as used in labels. (Full name + person title + academic title) |
Address | Address | Structure holding formatted address data. The layout of the array structure indicates the layout of the localized address. |
Post3 | String | Postal address, used in Japanese versions only |
Post2 | String | Postal address, used in Japanese versions only |
Post1 | String | Postal address, used in Japanese versions only |
Kanalname | String | Kana last name, used in Japanese versions only |
Kanafname | String | Kana first name, used in Japanese versions only |
CorrespondingAssociate | Associate | The associate corresponding to this person. Will be empty if the person is not a user (internal associate user, external user). |
Category | Category | Person's category. Usually null. Refer to the Contact.Category instead. Intended for use when individual persons are created. (i.e. when Person.Contact is blank) |
Business | Business | Person's business - usually blank. Use Contact.Business instead. Intended for use when individual persons are created. (i.e. when Person.Contact is blank) |
Associate | Associate | The associate owning this person (similar to contact.Associate) - usually blank. Use the Person.Contact.Associate instead. Intended for use when individual persons are created (i.e. when Person.Contact is blank) |
Salutation | String | Academic title, populated from Salutation list but can be overwritten with anything at all |
ActiveInterests | Integer | The number of active interests. |
SupportAssociate | Associate | |
TicketPriority | TicketPriority | |
CustomerLanguage | CustomerLanguage | |
DbiAgentId | Integer | Integration agent (eJournal) |
DbiKey | String | The primary key for the integrated entry in the external datasource. |
DbiLastModified | String | When the entry was last modified. |
DbiLastSyncronized | String | Last external syncronization. |
SentInfo | Integer | Has information on username/password been sent (ejournal) |
ShowContactTickets | Integer | Should tickets related to the company be shown to this person |
UserInfo | UserInfo | Information about the user if this person is a user. If IsAssociate (e.g. is user is true) the UserInfo will be provided. |
ChatEmails | Array | |
InternetPhones | Array | |
Source | Integer | How did we get this person? For future integration needs |
ActiveErpLinks | Integer | How many active ERP links are there for this person? |
ShipmentTypes | Array | The person's available and selected shipment types. |
Consents | Array | The person's available consent information. Missing consents are not deleted. To remove a consent, mark its legalbase as 'WITHDRAWN' |
BounceEmails | Array | Email addresses with a positive bounce counter. |
ActiveStatusMonitorId | Integer | Active status monitor identity with the lowest rank for person |
CreatedByFormId | Integer | The form id of the form that created the person |
UserDefinedFields | Object | Deprecated: Use {SuperOffice.CRM.Services.PersonEntity.CustomFields} instead. Dictionary of user defined field data. The key string is the ProgId of the UdefField, or if the ProgId is empty it is a string of the format "SuperOffice:[UdefFieldIdentity]", e.g. "SuperOffice:1234" |
ExtraFields | Object | Deprecated: Use {SuperOffice.CRM.Services.PersonEntity.CustomFields} instead. Extra fields added to the carrier. This could be data from Plug-ins, the foreign key system, external applications, etc. |
CustomFields | Object | Udef + Extra fields added to the carrier. Extra fields as defined by changes to database schema + user-defined fields as defined by admin. Custom fields combines user defined fields and extra fields into one bucket. The individual {SuperOffice.CRM.Services.PersonEntity.ExtraFields} and |
Response:
PersonEntity updated.
Response | Description |
---|---|
200 | PersonEntity updated. |
412 | Update stopped because PersonEntity has changed since the requested If-Unmodified-Since timestamp. |
400 | Bad request. Entity to save is not in request body. |
Response body: PersonEntityWithLinks
Property Name | Type | Description |
---|---|---|
PersonId | int32 | Primary key |
Firstname | string | First name |
MiddleName | string | Middle name or 'van' etc. |
Lastname | string | Last name |
Mrmrs | string | e.g. Mrs sex_title Use MDO List name "mrmrs" to get list items. |
Title | string | Title |
UpdatedDate | date-time | Last updated date in UTC. |
CreatedDate | date-time | Registered date in UTC. |
BirthDate | date-time | The Person birth date as UTC Date. Year 1 = Null. Year 2 = unknown year. |
CreatedBy | Associate | The user that created the person object |
Emails | array | A collection of the person's emails |
Description | string | The actual text, max 2047 significant characters even though it is stored as a larger data type on some databases |
IsAssociate | bool | Checks if the person object is an associate. The property is read-only. |
PrivatePhones | array | Returns a collection of phone numbers that belong to the contact person. |
Faxes | array | Returns a collection of fax numbers that belong to the contact person. |
MobilePhones | array | Returns a collection of mobile phone numbers that belong to the contact person. |
OfficePhones | array | Returns a collection of office phone numbers that belong to the contact person. |
OtherPhones | array | Returns a collection of pagers that belong to the contact person. |
Position | Position | The position. This is a predefined SuperOffice value, different from Title Use MDO List name "perspos" to get list items. |
UpdatedBy | Associate | The person that last updated the person object |
Contact | Contact | The contact the contact person is registered on. This is required unless the 'MandatoryContactOnPerson' preference is set. Use MDO List name "contact_new" to get list items. |
Country | Country | The country this contact person is located in. Use MDO List name "country" to get list items. |
Interests | array | The person's available and selected interests. Use MDO List name "persint" to get list items. |
PersonNumber | string | Alphanumeric user field |
FullName | string | The person's full name localized to the current culture/country. (internal name used in clients for employees) |
NoMailing | bool | Spam filter. Indicates if this person should retrieve advertising. |
UsePersonAddress | bool | True if the person's address should be used as mailing address, instead of the contact's address. |
Retired | bool | True if the user is retired and should have no rights, not appear in lists, etc. |
Urls | array | The urls related to this person. |
FormalName | string | Get formal name for a person, as used in labels. (Full name + person title + academic title) |
Address | Address | Structure holding formatted address data. The layout of the array structure indicates the layout of the localized address. |
Post3 | string | Postal address, used in Japanese versions only |
Post2 | string | Postal address, used in Japanese versions only |
Post1 | string | Postal address, used in Japanese versions only |
Kanalname | string | Kana last name, used in Japanese versions only |
Kanafname | string | Kana first name, used in Japanese versions only |
CorrespondingAssociate | Associate | The associate corresponding to this person. Will be empty if the person is not a user (internal associate user, external user). |
Category | Category | Person's category. Usually null. Refer to the Contact.Category instead. Intended for use when individual persons are created. (i.e. when Person.Contact is blank) Use MDO List name "category" to get list items. |
Business | Business | Person's business - usually blank. Use Contact.Business instead. Intended for use when individual persons are created. (i.e. when Person.Contact is blank) Use MDO List name "business" to get list items. |
Associate | Associate | The associate owning this person (similar to contact.Associate) - usually blank. Use the Person.Contact.Associate instead. Intended for use when individual persons are created (i.e. when Person.Contact is blank) Use MDO List name "associate" to get list items. |
Salutation | string | Academic title, populated from Salutation list but can be overwritten with anything at all Use MDO List name "salutation" to get list items. |
ActiveInterests | int32 | The number of active interests. |
SupportAssociate | Associate | Use MDO List name "associate" to get list items. |
TicketPriority | TicketPriority | Use MDO List name "ticketpriority" to get list items. |
CustomerLanguage | CustomerLanguage | Use MDO List name "customerlanguage" to get list items. |
DbiAgentId | int32 | Integration agent (eJournal) |
DbiKey | string | The primary key for the integrated entry in the external datasource. |
DbiLastModified | date-time | When the entry was last modified. |
DbiLastSyncronized | date-time | Last external syncronization. |
SentInfo | int32 | Has information on username/password been sent (ejournal) |
ShowContactTickets | int32 | Should tickets related to the company be shown to this person |
UserInfo | UserInfo | Information about the user if this person is a user. If IsAssociate (e.g. is user is true) the UserInfo will be provided. |
ChatEmails | array | |
InternetPhones | array | |
Source | int32 | How did we get this person? For future integration needs |
ActiveErpLinks | int32 | How many active ERP links are there for this person? |
ShipmentTypes | array | The person's available and selected shipment types. |
Consents | array | The person's available consent information. Missing consents are not deleted. To remove a consent, mark its legalbase as 'WITHDRAWN' |
BounceEmails | array | Email addresses with a positive bounce counter. |
ActiveStatusMonitorId | int32 | Active status monitor identity with the lowest rank for person |
CreatedByFormId | int32 | The form id of the form that created the person |
UserDefinedFields | object | Deprecated: Use {SuperOffice.CRM.Services.PersonEntity.CustomFields} instead. Dictionary of user defined field data. The key string is the ProgId of the UdefField, or if the ProgId is empty it is a string of the format "SuperOffice:[UdefFieldIdentity]", e.g. "SuperOffice:1234" |
ExtraFields | object | Deprecated: Use {SuperOffice.CRM.Services.PersonEntity.CustomFields} instead. Extra fields added to the carrier. This could be data from Plug-ins, the foreign key system, external applications, etc. |
CustomFields | object | Udef + Extra fields added to the carrier. Extra fields as defined by changes to database schema + user-defined fields as defined by admin. Custom fields combines user defined fields and extra fields into one bucket. The individual {SuperOffice.CRM.Services.PersonEntity.ExtraFields} and UserDefinedFields properties are deprecated in favor of this combined collection. |
TableRight | TableRight | The carrier's table right |
FieldProperties | object | Field property dictionary mapping field names to field access rights. |
_Links | object |
Sample request
PUT /api/v1/Person/{id}
Authorization: Basic dGplMDpUamUw
Accept: application/json; charset=utf-8
Accept-Language: en
Content-Type: application/json; charset=utf-8
{
"PersonId": 288,
"Firstname": "Adan",
"MiddleName": "Dickinson-Moore",
"Lastname": "Rice",
"Mrmrs": "tempora",
"Title": "aut",
"UpdatedDate": "2023-06-26T14:13:48.9619135+02:00",
"CreatedDate": "2001-12-25T14:13:48.9619135+01:00",
"BirthDate": "2017-04-04T14:13:48.9619135+02:00",
"CreatedBy": null,
"Emails": [
{
"Value": "ut",
"StrippedValue": "velit",
"Description": "Streamlined exuding emulation"
},
{
"Value": "ut",
"StrippedValue": "velit",
"Description": "Streamlined exuding emulation"
}
],
"Description": "Cross-group stable standardization",
"IsAssociate": false,
"PrivatePhones": [
{
"Value": "iusto",
"StrippedValue": "aliquid",
"Description": "Enterprise-wide analyzing benchmark"
},
{
"Value": "iusto",
"StrippedValue": "aliquid",
"Description": "Enterprise-wide analyzing benchmark"
}
],
"Faxes": [
{
"Value": "eveniet",
"StrippedValue": "iusto",
"Description": "Reactive 24/7 analyzer"
},
{
"Value": "eveniet",
"StrippedValue": "iusto",
"Description": "Reactive 24/7 analyzer"
}
],
"MobilePhones": [
{
"Value": "est",
"StrippedValue": "blanditiis",
"Description": "Re-engineered real-time secured line"
},
{
"Value": "est",
"StrippedValue": "blanditiis",
"Description": "Re-engineered real-time secured line"
}
],
"OfficePhones": [
{
"Value": "dolor",
"StrippedValue": "quo",
"Description": "Visionary mobile software"
},
{
"Value": "dolor",
"StrippedValue": "quo",
"Description": "Visionary mobile software"
}
],
"OtherPhones": [
{
"Value": "nihil",
"StrippedValue": "fuga",
"Description": "Optional 3rd generation archive"
},
{
"Value": "nihil",
"StrippedValue": "fuga",
"Description": "Optional 3rd generation archive"
}
],
"Position": null,
"UpdatedBy": null,
"Contact": null,
"Country": null,
"Interests": [
{
"Id": 398,
"Name": "Marvin-Heaney",
"ToolTip": "Aut vero aut et cupiditate in aliquam omnis.",
"Deleted": false,
"Rank": 119,
"Type": "dolores",
"ColorBlock": 427,
"IconHint": "qui",
"Selected": false,
"LastChanged": "2021-06-13T14:13:48.9619135+02:00",
"ChildItems": [
{},
{}
],
"ExtraInfo": "nam",
"StyleHint": "minima",
"Hidden": false,
"FullName": "Lola Hilpert V"
}
],
"PersonNumber": "826209",
"FullName": "Mr. Darwin Lucius Cormier",
"NoMailing": true,
"UsePersonAddress": false,
"Retired": false,
"Urls": [
{
"Value": "autem",
"StrippedValue": "mollitia",
"Description": "Self-enabling reciprocal secured line"
},
{
"Value": "autem",
"StrippedValue": "mollitia",
"Description": "Self-enabling reciprocal secured line"
}
],
"FormalName": "Spinka-White",
"Address": null,
"Post3": "ut",
"Post2": "reiciendis",
"Post1": "consequuntur",
"Kanalname": "animi",
"Kanafname": "quidem",
"CorrespondingAssociate": null,
"Category": null,
"Business": null,
"Associate": null,
"Salutation": "dolore",
"ActiveInterests": 97,
"SupportAssociate": null,
"TicketPriority": null,
"CustomerLanguage": null,
"DbiAgentId": 148,
"DbiKey": "laboriosam",
"DbiLastModified": "2023-08-01T14:13:48.9619135+02:00",
"DbiLastSyncronized": "2000-06-24T14:13:48.9619135+02:00",
"SentInfo": 239,
"ShowContactTickets": 820,
"UserInfo": null,
"ChatEmails": [
{
"Value": "laborum",
"StrippedValue": "assumenda",
"Description": "Fundamental global moderator"
},
{
"Value": "laborum",
"StrippedValue": "assumenda",
"Description": "Fundamental global moderator"
}
],
"InternetPhones": [
{
"Value": "commodi",
"StrippedValue": "quidem",
"Description": "Synergized even-keeled internet solution"
},
{
"Value": "commodi",
"StrippedValue": "quidem",
"Description": "Synergized even-keeled internet solution"
}
],
"Source": 427,
"ActiveErpLinks": 758,
"ShipmentTypes": [
{
"Id": 488,
"Name": "Champlin-Larson",
"ToolTip": "Expedita quia.",
"Deleted": false,
"Rank": 689,
"Type": "esse",
"ColorBlock": 9,
"IconHint": "magni",
"Selected": false,
"LastChanged": "2018-03-27T14:13:48.9619135+02:00",
"ChildItems": [
{},
{}
],
"ExtraInfo": "molestiae",
"StyleHint": "incidunt",
"Hidden": false,
"FullName": "Mrs. Rae Deshaun Boyer"
}
],
"Consents": [
{
"ConsentPersonId": 214,
"Comment": "dolorum",
"Registered": "2002-10-09T14:13:48.9619135+02:00",
"RegisteredAssociateId": 486,
"Updated": "2014-11-14T14:13:48.9619135+01:00",
"UpdatedAssociateId": 812,
"LegalBaseId": 304,
"LegalBaseKey": "doloribus",
"LegalBaseName": "Torphy Inc and Sons",
"ConsentPurposeId": 137,
"ConsentPurposeKey": "aut",
"ConsentPurposeName": "Schmeler Group",
"ConsentSourceId": 199,
"ConsentSourceKey": "vero",
"ConsentSourceName": "Pfeffer-Leannon"
}
],
"BounceEmails": [
"edmund_haley@feest.biz",
"flavie.oconnell@schinner.co.uk"
],
"ActiveStatusMonitorId": 254,
"CreatedByFormId": 630,
"UserDefinedFields": {
"SuperOffice:1": "Holly Williamson",
"SuperOffice:2": "Giuseppe McDermott"
},
"ExtraFields": {
"ExtraFields1": "corporis",
"ExtraFields2": "corrupti"
},
"CustomFields": {
"CustomFields1": "explicabo",
"CustomFields2": "sapiente"
}
}
Sample response
HTTP/1.1 200 PersonEntity updated.
Content-Type: application/json; charset=utf-8
{
"PersonId": 134,
"Firstname": "Kayla",
"MiddleName": "Ruecker, Hettinger and Koelpin",
"Lastname": "Thompson",
"Mrmrs": "aut",
"Title": "laudantium",
"UpdatedDate": "2006-01-08T14:13:48.9775351+01:00",
"CreatedDate": "2006-05-11T14:13:48.9775351+02:00",
"BirthDate": "1999-02-08T14:13:48.9775351+01:00",
"CreatedBy": null,
"Emails": [
{
"Value": "natus",
"StrippedValue": "fugit",
"Description": "Automated impactful framework",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 54
}
}
},
{
"Value": "natus",
"StrippedValue": "fugit",
"Description": "Automated impactful framework",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 54
}
}
}
],
"Description": "Face to face 3rd generation matrices",
"IsAssociate": false,
"PrivatePhones": [
{
"Value": "praesentium",
"StrippedValue": "dolorem",
"Description": "Customizable impactful knowledge base",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 520
}
}
},
{
"Value": "praesentium",
"StrippedValue": "dolorem",
"Description": "Customizable impactful knowledge base",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 520
}
}
}
],
"Faxes": [
{
"Value": "itaque",
"StrippedValue": "praesentium",
"Description": "Ergonomic attitude-oriented alliance",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 951
}
}
},
{
"Value": "itaque",
"StrippedValue": "praesentium",
"Description": "Ergonomic attitude-oriented alliance",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 951
}
}
}
],
"MobilePhones": [
{
"Value": "recusandae",
"StrippedValue": "voluptatem",
"Description": "Implemented clear-thinking function",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 934
}
}
},
{
"Value": "recusandae",
"StrippedValue": "voluptatem",
"Description": "Implemented clear-thinking function",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 934
}
}
}
],
"OfficePhones": [
{
"Value": "doloremque",
"StrippedValue": "repellendus",
"Description": "Monitored empowering framework",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 780
}
}
},
{
"Value": "doloremque",
"StrippedValue": "repellendus",
"Description": "Monitored empowering framework",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 780
}
}
}
],
"OtherPhones": [
{
"Value": "iure",
"StrippedValue": "cum",
"Description": "Customizable zero administration framework",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 447
}
}
},
{
"Value": "iure",
"StrippedValue": "cum",
"Description": "Customizable zero administration framework",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 447
}
}
}
],
"Position": null,
"UpdatedBy": null,
"Contact": null,
"Country": null,
"Interests": [
{
"Id": 163,
"Name": "Kilback, Runolfsdottir and Wyman",
"ToolTip": "Voluptatibus quo.",
"Deleted": false,
"Rank": 84,
"Type": "et",
"ColorBlock": 676,
"IconHint": "quia",
"Selected": false,
"LastChanged": "2002-04-15T14:13:48.9775351+02:00",
"ChildItems": [
{},
{}
],
"ExtraInfo": "non",
"StyleHint": "placeat",
"Hidden": true,
"FullName": "Hailee Waters",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 870
}
}
}
],
"PersonNumber": "1245238",
"FullName": "Jarrod Monahan",
"NoMailing": true,
"UsePersonAddress": false,
"Retired": false,
"Urls": [
{
"Value": "minima",
"StrippedValue": "et",
"Description": "Public-key bi-directional hierarchy",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 684
}
}
},
{
"Value": "minima",
"StrippedValue": "et",
"Description": "Public-key bi-directional hierarchy",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 684
}
}
}
],
"FormalName": "Reinger Inc and Sons",
"Address": null,
"Post3": "quo",
"Post2": "quisquam",
"Post1": "voluptatem",
"Kanalname": "itaque",
"Kanafname": "molestiae",
"CorrespondingAssociate": null,
"Category": null,
"Business": null,
"Associate": null,
"Salutation": "in",
"ActiveInterests": 814,
"SupportAssociate": null,
"TicketPriority": null,
"CustomerLanguage": null,
"DbiAgentId": 166,
"DbiKey": "et",
"DbiLastModified": "1998-08-10T14:13:48.9775351+02:00",
"DbiLastSyncronized": "2011-04-09T14:13:48.9775351+02:00",
"SentInfo": 670,
"ShowContactTickets": 550,
"UserInfo": null,
"ChatEmails": [
{
"Value": "sapiente",
"StrippedValue": "nulla",
"Description": "Diverse reciprocal algorithm",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 652
}
}
},
{
"Value": "sapiente",
"StrippedValue": "nulla",
"Description": "Diverse reciprocal algorithm",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.String",
"FieldLength": 652
}
}
}
],
"InternetPhones": [
{
"Value": "reprehenderit",
"StrippedValue": "quibusdam",
"Description": "Versatile web-enabled challenge",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 469
}
}
},
{
"Value": "reprehenderit",
"StrippedValue": "quibusdam",
"Description": "Versatile web-enabled challenge",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 469
}
}
}
],
"Source": 227,
"ActiveErpLinks": 903,
"ShipmentTypes": [
{
"Id": 562,
"Name": "Larkin, Durgan and Schiller",
"ToolTip": "Corporis eligendi quia labore non in eum tempora.",
"Deleted": false,
"Rank": 835,
"Type": "ut",
"ColorBlock": 753,
"IconHint": "eos",
"Selected": true,
"LastChanged": "2009-01-21T14:13:48.9775351+01:00",
"ChildItems": [
{},
{}
],
"ExtraInfo": "ex",
"StyleHint": "impedit",
"Hidden": false,
"FullName": "Sheridan Ferry",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 77
}
}
}
],
"Consents": [
{
"ConsentPersonId": 587,
"Comment": "aut",
"Registered": "2023-04-18T14:13:48.9775351+02:00",
"RegisteredAssociateId": 624,
"Updated": "2000-09-06T14:13:48.9775351+02:00",
"UpdatedAssociateId": 402,
"LegalBaseId": 530,
"LegalBaseKey": "facilis",
"LegalBaseName": "Fay-McCullough",
"ConsentPurposeId": 700,
"ConsentPurposeKey": "ut",
"ConsentPurposeName": "Braun, Frami and Hand",
"ConsentSourceId": 271,
"ConsentSourceKey": "libero",
"ConsentSourceName": "Towne-Larkin",
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 34
}
}
}
],
"BounceEmails": [
"nikita_davis@stoltenberglowe.name",
"ernest@von.us"
],
"ActiveStatusMonitorId": 524,
"CreatedByFormId": 902,
"UserDefinedFields": {
"SuperOffice:1": "1926169176",
"SuperOffice:2": "False"
},
"ExtraFields": {
"ExtraFields1": "quisquam",
"ExtraFields2": "odit"
},
"CustomFields": {
"CustomFields1": "fugit",
"CustomFields2": "qui"
},
"TableRight": null,
"FieldProperties": {
"fieldName": {
"FieldRight": null,
"FieldType": "System.Int32",
"FieldLength": 9
}
},
"_Links": {
"Self": "https://www.example.com/api/v1/project/321",
"Archive": "https://www.example.com/api/v1/project"
}
}