updateRepresentative

The createRepresentative mutation creates a representative of a business entity.

Parameters

ParameterTypeRequired
updateRepresentativeIdUUIDtrue
representativeObjecttrue
representative.document_expiration_dateStringfalse
representative.document_issue_dateStringfalse
representative.document_numberStringfalse
representative.citizenshipStringfalse
representative.date_of_birthStringfalse
representative.emailStringfalse
representative.first_nameStringfalse
representative.is_signerBooleanfalse
representative.last_nameStringfalse
representative.job_titleStringfalse
representative.ownership_percentageFloatfalse
representative.passport_numberStringfalse
representative.phoneStringfalse
representative.residential_addressStringfalse
representative.residential_address2Stringfalse
representative.residential_cityStringfalse
representative.residential_countryStringfalse
representative.residential_postal_codeStringfalse
representative.residential_state_province_regionStringfalse
representative.responsibilityStringfalse
representative.tax_numberStringfalse

GraphQL Schema

type Mutation {
  updateRepresentative(representative: UpdateRepresentativeInput, updateRepresentativeId: UUID): UpdateRepresentativeResponse
}

input UpdateRepresentativeInput {
  cert_expiration_date: String
  cert_issue_date: String
  cert_no: String
  citizenship: String
  date_of_birth: String
  email: String
  first_name: String
  is_signer: Boolean
  last_name: String
  job_title: String
  ownership_percentage: Float
  passport_number: String
  phone: String
  residential_address: String
  residential_address2: String
  residential_city: String
  residential_country: String
  residential_postal_code: String
  residential_state_province_region: String
  responsibility: String
  tax_number: String
}

type UpdateRepresentativeResponse {
  success: Boolean
  message: String
}

Language
Click Try It! to start a request and see the response here!