post https://sandbox.external.routefusion.com/graphql (51 disregard) (COPY)
The entitiesPage query fetches and returns all entities that match the provided filter(s)
Parameters
Parameter | Type | Required |
---|---|---|
pagination | PaginationInput | true |
search_terms | String | false |
filters | [FilterInput] | false |
GraphQL Schema
query EntitiesPage($pagination: PaginationInput!, $filters: [FilterInput]) {
entitiesPage(pagination: $pagination, filters: $filters) {
items {
id
type
entity_name
business_name
first_name
last_name
contact_first_name
contact_last_name
state
email
phone
phone_country
address1
address2
city
state_province_region
postal_code
country
created_date
tax_number
trade_name
naics_code
currency_needed
business_type
business_industry
trading_symbol
incorporation_date
document_expiration_date
website_url
}
pagination {
page
page_size
pages_total
items_total
}
}
}