entity

The entity query fetches data for a single entity.

query entity (
    $entity_id: UUID!
) {
    entity (
        entity_id: $entity_id
    ) {
        id
        type
        business_name
        first_name
        last_name
        state
        email
        phone
        address1
        address2
        city
        state_province_region
        postal_code
        country
    		representatives {
            first_name
            last_name
            date_of_birth
            is_signer
            residential_address
            residential_address2
            residential_city
            residential_state_province_region
            residential_postal_code
            residential_country
            citizenship
            responsibility
            ownership_percentage
            email
            phone
            job_title
            passport_number
        }
        creator {
            id
            identifier
            email
            first_name
            last_name
            admin
        }
        users {
            id
            identifier
            email
            first_name
            last_name
            admin
        }
    }
}
Language
Click Try It! to start a request and see the response here!