• Share
    • Twitter
    • LinkedIn
    • Facebook
    • Email
  • Feedback
  • Edit
Show / Hide Table of Contents

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 Use MDO List name "mrmrs" to get list items.
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 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 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) 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 Integer 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 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 UserDefinedFields properties are deprecated in favor of this combined collection.

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": 535,
  "Firstname": "Vella",
  "MiddleName": "Spinka Group",
  "Lastname": "Bartoletti",
  "Mrmrs": "quia",
  "Title": "qui",
  "UpdatedDate": "2015-08-11T17:54:08.2887055+02:00",
  "CreatedDate": "2019-03-19T17:54:08.2887055+01:00",
  "BirthDate": "2013-12-21T17:54:08.2887055+01:00",
  "CreatedBy": null,
  "Emails": [
    {
      "Value": "beatae",
      "StrippedValue": "a",
      "Description": "Realigned non-volatile instruction set"
    },
    {
      "Value": "beatae",
      "StrippedValue": "a",
      "Description": "Realigned non-volatile instruction set"
    }
  ],
  "Description": "Universal disintermediate installation",
  "IsAssociate": false,
  "PrivatePhones": [
    {
      "Value": "et",
      "StrippedValue": "tenetur",
      "Description": "Networked cohesive task-force"
    },
    {
      "Value": "et",
      "StrippedValue": "tenetur",
      "Description": "Networked cohesive task-force"
    }
  ],
  "Faxes": [
    {
      "Value": "iusto",
      "StrippedValue": "vitae",
      "Description": "Seamless multi-state service-desk"
    },
    {
      "Value": "iusto",
      "StrippedValue": "vitae",
      "Description": "Seamless multi-state service-desk"
    }
  ],
  "MobilePhones": [
    {
      "Value": "repellat",
      "StrippedValue": "animi",
      "Description": "Persevering tertiary encoding"
    },
    {
      "Value": "repellat",
      "StrippedValue": "animi",
      "Description": "Persevering tertiary encoding"
    }
  ],
  "OfficePhones": [
    {
      "Value": "aspernatur",
      "StrippedValue": "dolorem",
      "Description": "User-centric multi-state capacity"
    },
    {
      "Value": "aspernatur",
      "StrippedValue": "dolorem",
      "Description": "User-centric multi-state capacity"
    }
  ],
  "OtherPhones": [
    {
      "Value": "in",
      "StrippedValue": "tempore",
      "Description": "Grass-roots stable alliance"
    },
    {
      "Value": "in",
      "StrippedValue": "tempore",
      "Description": "Grass-roots stable alliance"
    }
  ],
  "Position": null,
  "UpdatedBy": null,
  "Contact": null,
  "Country": null,
  "Interests": [
    {
      "Id": 765,
      "Name": "Okuneva-Hudson",
      "ToolTip": "Deleniti non odit soluta dolor odio.",
      "Deleted": true,
      "Rank": 291,
      "Type": "magnam",
      "ColorBlock": 10,
      "IconHint": "enim",
      "Selected": true,
      "LastChanged": "2002-01-20T17:54:08.2887055+01:00",
      "ChildItems": [
        {},
        {}
      ],
      "ExtraInfo": "fugit",
      "StyleHint": "sed",
      "Hidden": true,
      "FullName": "Alexandra Shields"
    }
  ],
  "PersonNumber": "321406",
  "FullName": "Ms. Kristy Lind Sr.",
  "NoMailing": true,
  "UsePersonAddress": false,
  "Retired": false,
  "Urls": [
    {
      "Value": "rem",
      "StrippedValue": "inventore",
      "Description": "Face to face object-oriented contingency"
    },
    {
      "Value": "rem",
      "StrippedValue": "inventore",
      "Description": "Face to face object-oriented contingency"
    }
  ],
  "FormalName": "Stiedemann Inc and Sons",
  "Address": null,
  "Post3": "rerum",
  "Post2": "ex",
  "Post1": "omnis",
  "Kanalname": "vero",
  "Kanafname": "veritatis",
  "CorrespondingAssociate": null,
  "Category": null,
  "Business": null,
  "Associate": null,
  "Salutation": "at",
  "ActiveInterests": 434,
  "SupportAssociate": null,
  "TicketPriority": null,
  "CustomerLanguage": null,
  "DbiAgentId": 814,
  "DbiKey": "eum",
  "DbiLastModified": "2006-07-25T17:54:08.335577+02:00",
  "DbiLastSyncronized": "2005-03-28T17:54:08.335577+02:00",
  "SentInfo": 20,
  "ShowContactTickets": 249,
  "UserInfo": null,
  "ChatEmails": [
    {
      "Value": "et",
      "StrippedValue": "assumenda",
      "Description": "Customizable cohesive time-frame"
    },
    {
      "Value": "et",
      "StrippedValue": "assumenda",
      "Description": "Customizable cohesive time-frame"
    }
  ],
  "InternetPhones": [
    {
      "Value": "soluta",
      "StrippedValue": "eos",
      "Description": "Inverse scalable toolset"
    },
    {
      "Value": "soluta",
      "StrippedValue": "eos",
      "Description": "Inverse scalable toolset"
    }
  ],
  "Source": 391,
  "ActiveErpLinks": 965,
  "ShipmentTypes": [
    {
      "Id": 72,
      "Name": "Mante, Maggio and Berge",
      "ToolTip": "Officiis reprehenderit dicta non.",
      "Deleted": false,
      "Rank": 604,
      "Type": "nobis",
      "ColorBlock": 815,
      "IconHint": "eius",
      "Selected": false,
      "LastChanged": "2000-07-13T17:54:08.3512954+02:00",
      "ChildItems": [
        {},
        {}
      ],
      "ExtraInfo": "qui",
      "StyleHint": "eos",
      "Hidden": true,
      "FullName": "Mrs. Rosa Frederic Wiza"
    }
  ],
  "Consents": [
    {
      "ConsentPersonId": 436,
      "Comment": "nisi",
      "Registered": "2010-05-30T17:54:08.3512954+02:00",
      "RegisteredAssociateId": 96,
      "Updated": "2014-02-19T17:54:08.3512954+01:00",
      "UpdatedAssociateId": 371,
      "LegalBaseId": 904,
      "LegalBaseKey": "ea",
      "LegalBaseName": "Aufderhar-Reinger",
      "ConsentPurposeId": 727,
      "ConsentPurposeKey": "illum",
      "ConsentPurposeName": "Weimann-Schaefer",
      "ConsentSourceId": 604,
      "ConsentSourceKey": "nostrum",
      "ConsentSourceName": "Cruickshank, Strosin and Emard"
    }
  ],
  "BounceEmails": [
    "steve@denesik.co.uk",
    "salma.schmidt@beer.co.uk"
  ],
  "ActiveStatusMonitorId": 255,
  "CreatedByFormId": 643,
  "UserDefinedFields": {
    "SuperOffice:1": "Mr. Ned Helena Quitzon",
    "SuperOffice:2": "Angel Felipa Heidenreich PhD"
  },
  "ExtraFields": {
    "ExtraFields1": "quos",
    "ExtraFields2": "omnis"
  },
  "CustomFields": {
    "CustomFields1": "quos",
    "CustomFields2": "consequatur"
  }
}

Sample response

HTTP/1.1 200 PersonEntity updated.
Content-Type: application/json; charset=utf-8

{
  "PersonId": 725,
  "Firstname": "Adela",
  "MiddleName": "Koelpin Inc and Sons",
  "Lastname": "Harvey",
  "Mrmrs": "adipisci",
  "Title": "ullam",
  "UpdatedDate": "2014-05-15T17:54:08.3512954+02:00",
  "CreatedDate": "2008-03-12T17:54:08.3512954+01:00",
  "BirthDate": "2011-09-30T17:54:08.3512954+02:00",
  "CreatedBy": null,
  "Emails": [
    {
      "Value": "eligendi",
      "StrippedValue": "aut",
      "Description": "Reactive composite challenge",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 999
        }
      }
    },
    {
      "Value": "eligendi",
      "StrippedValue": "aut",
      "Description": "Reactive composite challenge",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 999
        }
      }
    }
  ],
  "Description": "Vision-oriented regional architecture",
  "IsAssociate": true,
  "PrivatePhones": [
    {
      "Value": "error",
      "StrippedValue": "nulla",
      "Description": "Up-sized tangible time-frame",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 183
        }
      }
    },
    {
      "Value": "error",
      "StrippedValue": "nulla",
      "Description": "Up-sized tangible time-frame",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 183
        }
      }
    }
  ],
  "Faxes": [
    {
      "Value": "est",
      "StrippedValue": "a",
      "Description": "Face to face national emulation",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 804
        }
      }
    },
    {
      "Value": "est",
      "StrippedValue": "a",
      "Description": "Face to face national emulation",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 804
        }
      }
    }
  ],
  "MobilePhones": [
    {
      "Value": "sed",
      "StrippedValue": "est",
      "Description": "Function-based methodical secured line",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 493
        }
      }
    },
    {
      "Value": "sed",
      "StrippedValue": "est",
      "Description": "Function-based methodical secured line",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 493
        }
      }
    }
  ],
  "OfficePhones": [
    {
      "Value": "soluta",
      "StrippedValue": "ipsam",
      "Description": "Synchronised national policy",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 544
        }
      }
    },
    {
      "Value": "soluta",
      "StrippedValue": "ipsam",
      "Description": "Synchronised national policy",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 544
        }
      }
    }
  ],
  "OtherPhones": [
    {
      "Value": "qui",
      "StrippedValue": "dolorum",
      "Description": "Grass-roots upward-trending flexibility",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 625
        }
      }
    },
    {
      "Value": "qui",
      "StrippedValue": "dolorum",
      "Description": "Grass-roots upward-trending flexibility",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 625
        }
      }
    }
  ],
  "Position": null,
  "UpdatedBy": null,
  "Contact": null,
  "Country": null,
  "Interests": [
    {
      "Id": 664,
      "Name": "Kunde-Wiegand",
      "ToolTip": "Repellat aliquid et vero magnam occaecati.",
      "Deleted": true,
      "Rank": 803,
      "Type": "atque",
      "ColorBlock": 593,
      "IconHint": "laborum",
      "Selected": false,
      "LastChanged": "2011-04-11T17:54:08.3512954+02:00",
      "ChildItems": [
        {},
        {}
      ],
      "ExtraInfo": "ut",
      "StyleHint": "ut",
      "Hidden": false,
      "FullName": "Dr. Luther Corkery DDS",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 366
        }
      }
    }
  ],
  "PersonNumber": "984882",
  "FullName": "Mr. Sven Amara Franecki V",
  "NoMailing": false,
  "UsePersonAddress": false,
  "Retired": false,
  "Urls": [
    {
      "Value": "non",
      "StrippedValue": "blanditiis",
      "Description": "Innovative bandwidth-monitored data-warehouse",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 297
        }
      }
    },
    {
      "Value": "non",
      "StrippedValue": "blanditiis",
      "Description": "Innovative bandwidth-monitored data-warehouse",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 297
        }
      }
    }
  ],
  "FormalName": "Weimann Group",
  "Address": null,
  "Post3": "est",
  "Post2": "non",
  "Post1": "illo",
  "Kanalname": "nihil",
  "Kanafname": "nemo",
  "CorrespondingAssociate": null,
  "Category": null,
  "Business": null,
  "Associate": null,
  "Salutation": "porro",
  "ActiveInterests": 100,
  "SupportAssociate": null,
  "TicketPriority": null,
  "CustomerLanguage": null,
  "DbiAgentId": 26,
  "DbiKey": "facilis",
  "DbiLastModified": "2013-11-26T17:54:08.3512954+01:00",
  "DbiLastSyncronized": "2006-04-16T17:54:08.3512954+02:00",
  "SentInfo": 456,
  "ShowContactTickets": 854,
  "UserInfo": null,
  "ChatEmails": [
    {
      "Value": "ea",
      "StrippedValue": "blanditiis",
      "Description": "Secured stable throughput",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 885
        }
      }
    },
    {
      "Value": "ea",
      "StrippedValue": "blanditiis",
      "Description": "Secured stable throughput",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 885
        }
      }
    }
  ],
  "InternetPhones": [
    {
      "Value": "nemo",
      "StrippedValue": "nesciunt",
      "Description": "Open-architected multi-state installation",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 988
        }
      }
    },
    {
      "Value": "nemo",
      "StrippedValue": "nesciunt",
      "Description": "Open-architected multi-state installation",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.Int32",
          "FieldLength": 988
        }
      }
    }
  ],
  "Source": 820,
  "ActiveErpLinks": 310,
  "ShipmentTypes": [
    {
      "Id": 192,
      "Name": "Quigley, Gleason and Rippin",
      "ToolTip": "Enim et earum.",
      "Deleted": false,
      "Rank": 853,
      "Type": "atque",
      "ColorBlock": 555,
      "IconHint": "exercitationem",
      "Selected": true,
      "LastChanged": "2010-08-24T17:54:08.3512954+02:00",
      "ChildItems": [
        {},
        {}
      ],
      "ExtraInfo": "exercitationem",
      "StyleHint": "commodi",
      "Hidden": false,
      "FullName": "Ms. Hilton Ignatius Koepp",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 216
        }
      }
    }
  ],
  "Consents": [
    {
      "ConsentPersonId": 943,
      "Comment": "vel",
      "Registered": "2020-11-16T17:54:08.3512954+01:00",
      "RegisteredAssociateId": 514,
      "Updated": "2001-10-11T17:54:08.3512954+02:00",
      "UpdatedAssociateId": 798,
      "LegalBaseId": 748,
      "LegalBaseKey": "quidem",
      "LegalBaseName": "Kohler, Mayer and Fahey",
      "ConsentPurposeId": 40,
      "ConsentPurposeKey": "rerum",
      "ConsentPurposeName": "Leannon-Moore",
      "ConsentSourceId": 548,
      "ConsentSourceKey": "id",
      "ConsentSourceName": "Leffler, Funk and Kihn",
      "TableRight": null,
      "FieldProperties": {
        "fieldName": {
          "FieldRight": null,
          "FieldType": "System.String",
          "FieldLength": 170
        }
      }
    }
  ],
  "BounceEmails": [
    "catalina.hilll@halvorson.us",
    "jaylin@corwin.co.uk"
  ],
  "ActiveStatusMonitorId": 896,
  "CreatedByFormId": 754,
  "UserDefinedFields": {
    "SuperOffice:1": "Dr. Florian Effertz",
    "SuperOffice:2": "Mr. Thora Murray Sr."
  },
  "ExtraFields": {
    "ExtraFields1": "perferendis",
    "ExtraFields2": "aut"
  },
  "CustomFields": {
    "CustomFields1": "recusandae",
    "CustomFields2": "voluptatem"
  },
  "TableRight": null,
  "FieldProperties": {
    "fieldName": {
      "FieldRight": null,
      "FieldType": "System.Int32",
      "FieldLength": 143
    }
  },
  "_Links": {
    "Self": "https://www.example.com/api/v1/project/321",
    "Archive": "https://www.example.com/api/v1/project"
  }
}
© SuperOffice. All rights reserved.
SuperOffice |  Community |  Release Notes |  Privacy |  Site feedback |  Search Docs |  About Docs |  Contribute |  Back to top