Update a signatory

PUT {{baseUrl}}/v1/companies/:company_uuid/signatories/:signatory_uuid

Update a signatory that has been either invited or created. If the signatory has been created with minimal information through the POST /v1/companies/{company_uuid}/signatories/invite endpoint, then the first update must contain all attributes specified in the request body in order to start the identity verification process.

scope: signatories:write

Request Body

{"version"=>"<string>", "first_name"=>"<string>", "middle_initial"=>"<string>", "last_name"=>"<string>", "title"=>"<string>", "phone"=>"<string>", "birthday"=>"<string>", "ssn"=>"<string>", "home_address"=>{"street_1"=>"<string>", "street_2"=>"<string>", "city"=>"<string>", "state"=>"<string>", "zip"=>"<string>"}}

HEADERS

KeyDatatypeRequiredDescription
X-Gusto-API-VersionstringDetermines the date-based API version associated with your API call. If none is provided, your application's minimum API version is used.
Content-Typestring
Acceptstring

RESPONSES

status: OK

{&quot;uuid&quot;:&quot;f8c653dc-0094-41fb-8670-45d6399afade&quot;,&quot;first_name&quot;:&quot;Bob&quot;,&quot;last_name&quot;:&quot;Johnson&quot;,&quot;title&quot;:&quot;Owner&quot;,&quot;phone&quot;:&quot;4239879876&quot;,&quot;birthday&quot;:&quot;2002-10-31&quot;,&quot;email&quot;:&quot;olin.okuneva@denesik.us&quot;,&quot;is_admin&quot;:false,&quot;has_ssn&quot;:true,&quot;version&quot;:&quot;49ea586f528411f5cfadfd54452b2423&quot;,&quot;home_address&quot;:{&quot;street_1&quot;:&quot;524 Roob Divide&quot;,&quot;street_2&quot;:&quot;Suite 565&quot;,&quot;city&quot;:&quot;San Francisco&quot;,&quot;state&quot;:&quot;CA&quot;,&quot;zip&quot;:&quot;94107&quot;,&quot;country&quot;:&quot;USA&quot;},&quot;identity_verification_status&quot;:&quot;Skipped&quot;}