Update Contact
/accounts/{account_id}/contacts/{contact_id}
Update Contact [PUT]
Update an existing contact on an account.
Authorization: Admin, Web, Mobile
Request
Body {
"id": 5092,
"firstName": "Marge",
"lastName": "Simpson",
"phone": "890-555-1902",
"mobilePhone": "890-555-8002",
"email": "marge.simpson@homemakers.com",
"title": "",
"department": "",
"notes": null,
"address": "123 Elm Street",
"city": "Springfield",
"state": null,
"zip": "80982",
"country": "US"
}
Response 200
Body
{
"item": {
"id": 5092,
"firstName": "Frank",
"lastName": "Grimes",
"rowStatus": 1,
"phone": "678-555-9089",
"mobilePhone": "678-555-8837",
"email": "frank.grimes@nuclearplant.com",
"title": "Safety Inspector",
"department": "Safety",
"notes": null,
"address": "123 Elm Street",
"city": "Simpson",
"state": null,
"zip": "80982",
"country": "US",
"createdAt": "2014-05-06T19:20:39.773Z",
"createdBy": {
"id": 1902,
"firstName": "Homer",
"lastName": "Simpson"
},
"accountId": 908,
"loationsId": null
}
}