post https://sandbox.external.routefusion.com/graphql (11 disregard)
The createRepresentative mutation creates a representative of a business entity.
Parameters
Parameter | Type | Required |
---|---|---|
updateRepresentativeId | UUID | true |
representative | Object | true |
representative.document_expiration_date | String | false |
representative.document_issue_date | String | false |
representative.document_number | String | false |
representative.citizenship | String | false |
representative.date_of_birth | String | false |
representative.email | String | false |
representative.first_name | String | false |
representative.is_signer | Boolean | false |
representative.last_name | String | false |
representative.job_title | String | false |
representative.ownership_percentage | Float | false |
representative.passport_number | String | false |
representative.phone | String | false |
representative.residential_address | String | false |
representative.residential_address2 | String | false |
representative.residential_city | String | false |
representative.residential_country | String | false |
representative.residential_postal_code | String | false |
representative.residential_state_province_region | String | false |
representative.responsibility | String | false |
representative.tax_number | String | false |
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
}