post https://sandbox.external.routefusion.com/graphql (12 disregard)
Parameters
| Parameter | Type | Required | 
|---|---|---|
| user_id | UUID | true | 
| true | ||
| phone | String | false | 
| first_name | String | true | 
| last_name | String | true | 
| address1 | String | true | 
| address2 | String | false | 
| city | String | false | 
| state_province_region | String | false | 
| postal_code | PostalCode | false | 
| country | ISO3166_1 | true | 
| tax_number | TaxNumber | false | 
| birth_date | DateTime | true | 
| accept_terms_and_conditions | Boolean | true | 
GraphQL Schema
mutation createPersonalEntity (
    $user_id: UUID!
    $email: Email!
    $phone: String
    $first_name: String!
    $last_name: String!
    $address1: String!
    $address2: String
    $city: String
    $state_province_region: String
    $postal_code: PostalCode
    $country: ISO3166_1!
    $tax_number: TaxNumber
    $birth_date: DateTime!
    $accept_terms_and_conditions: Boolean!
) {
    createPersonalEntity (
        user_id: $user_id
        email: $email
        phone: $phone
        first_name: $first_name
        last_name: $last_name
        address1: $address1
        address2: $address2
        city: $city
        state_province_region: $state_province_region
        postal_code: $postal_code
        country: $country
        tax_number: $tax_number
        birth_date: $birth_date
        accept_terms_and_conditions: $accept_terms_and_conditions
    )
}