Payload for PATCH /organisations/id/{id}/contacts/id/{contactId}.
Contains new contact details for a person registered as contact at an organisation.
name | data type | constraints | description |
---|---|---|---|
surname | string | max size: 50, min size: 1 | New surname of the contact. |
forename | string | max size: 50, min size: 1 | New forename of the contact. |
string | regex: .+@.+, max size: 200, min size: 6 | New email address of the contact. | |
phone | string | regex: [-+() 0-9]*, max size: 50, min size: 1 | New phone number of the contact. |
function | string | max size: 100, min size: 0 | New role of the contact at the organisation. |
comment | string | max size: 1000, min size: 0 | New human readable comments about the contact. |
Example
{ "surname" : "Gödel", "forename" : "Kurt", "email" : "k.goedel@example.org", "phone" : "+49 69 1525-0", "function" : "system administrator", "comment" : "This contact is used for testing purposes only" }